/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(30,60,114,0.7), rgba(42,82,152,0.7)), url('../images/mit-adt-university.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #e91e63);
    color: white;
    box-shadow: 0 4px 15px rgba(255,105,180,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,105,180,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0.005em;
}

/* About Visual */
.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(30,60,114,0.3);
}

.element.research {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.element.innovation {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #ff69b4, #e91e63);
}

.element.global {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #28a745, #20c997);
}

.element.tech {
    top: 60%;
    right: 25%;
    animation-delay: 3s;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.element.health {
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.element.energy {
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.impact-circle {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(30,60,114,0.1), rgba(42,82,152,0.1));
    border: 3px solid #1e3c72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.circle-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72;
    line-height: 1.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30,60,114,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(30,60,114,0); }
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #ff69b4, #1e3c72);
}

.leadership-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
}

.leadership-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #ff69b4);
}

.messages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.message-card {
    background: white;
    border-radius: 0;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 5px 20px rgba(0,0,0,0.1);
    border-left: 8px solid #1e3c72;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.15);
}

.leader-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.leader-info img {
    width: 250px;
    height: 250px;
    border-radius: 0;
    object-fit: cover;
    border: 8px solid #ffffff;
    box-shadow: 0 10px 30px rgba(30,60,114,0.4), inset 0 1px 0 rgba(255,255,255,0.8);
}

.message-card:nth-child(2) {
    border-left-color: #ff69b4;
}

.message-card:nth-child(2) .leader-info img {
    border-color: #ffffff;
}

.message-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.message-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
    font-family: 'Inter', sans-serif;
}

.message-content p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.btn-cta {
    background: #ff69b4;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,105,180,0.4);
    background: #e91e63;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .about-content {
        padding: 0 2rem;
        gap: 2rem;
    }
    
    .message-card {
        padding: 3rem;
        gap: 2rem;
    }
    
    .leader-info img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .message-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem;
    }
    
    .leader-info img {
        width: 180px;
        height: 180px;
    }
    
    .leadership-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 4rem 1rem;
        min-height: 80vh;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 200px;
        text-align: center;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .impact-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-text {
        font-size: 0.9rem;
    }
    
    .leadership-section {
        padding: 3rem 0;
    }
    
    .leadership-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .messages-grid {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .message-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .leader-info img {
        width: 150px;
        height: 150px;
    }
    
    .message-content p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0.5rem;
        min-height: 70vh;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 180px;
    }
    
    .about-section {
        padding: 2rem 0;
    }
    
    .about-content {
        padding: 0 0.5rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .about-visual {
        height: 250px;
    }
    
    .element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .impact-circle {
        width: 120px;
        height: 120px;
    }
    
    .circle-text {
        font-size: 0.8rem;
    }
    
    .leadership-section {
        padding: 2rem 0;
    }
    
    .leadership-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .messages-grid {
        padding: 0 0.5rem;
    }
    
    .message-card {
        padding: 1.5rem;
        border-left-width: 4px;
    }
    
    .leader-info img {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }
    
    .message-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .cta-section {
        padding: 2rem 0.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 160px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .about-text h2 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .leadership-section h2 {
        font-size: 1.4rem;
    }
    
    .message-card {
        padding: 1rem;
    }
    
    .leader-info img {
        width: 100px;
        height: 100px;
    }
    
    .message-content p {
        font-size: 0.85rem;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
    
    .cta-section p {
        font-size: 0.85rem;
    }
    
    .btn-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}