/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #45b7d1;
    --dark-color: #2D3436;
    --light-color: #F5F6FA;
    --gradient-1: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    --gradient-2: linear-gradient(135deg, #45b7d1, #96e6a1);
    --gradient-3: linear-gradient(135deg, #ffd93d, #ff6b6b);
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section with Multicolor */
.hero {
    position: relative;
    height: 100vh;
    background: var(--gradient-1);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Animated Background Elements */
.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Multicolor Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Featured Section with Multicolor Cards */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 20px;
}

.featured-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.featured-item p {
    color: #666;
}

/* Animated Text */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Collection Section */
.collection {
    padding: 8rem 5%;
    background: var(--light-color);
}

.collection h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.collection-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.collection-image {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.view-button {
    padding: 1rem 2rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.collection-item:hover .view-button {
    transform: translateY(0);
}

.view-button:hover {
    background: #e67e22;
    color: white;
}

.collection-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.collection-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.collection-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    background: var(--gradient-3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: var(--gradient-1);
    color: white;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Cities Section */
.cities-section {
    background: var(--light-color);
    padding: 5rem 5%;
}

.cities-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #333;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.city-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.city-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.city-item i {
    font-size: 2.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.city-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.city-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: var(--gradient-3);
    color: white;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}

.submit-button {
    background: white;
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #e67e22;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e67e22;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    background: var(--gradient-2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trends Section */
.trends {
    padding: 8rem 5%;
    background: var(--light-color);
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.trend-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.trend-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trend-item:hover img {
    transform: scale(1.05);
}

.trend-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.trend-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trend-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.read-more {
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: white;
    color: var(--primary-color);
}

/* WhatsApp Share Button */
.whatsapp-share {
    background: var(--gradient-2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
}

/* Owners Section */
.owners-section {
    margin: 4rem 0;
    text-align: center;
}

.owners-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.owner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.owner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.owner-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.owner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owner-card:hover .owner-overlay {
    opacity: 1;
}

.owner-quote {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-align: center;
    padding: 0 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.owner-card:hover .owner-quote {
    transform: translateY(0);
}

.owner-card:hover .owner-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.owner-info {
    padding: 2rem;
    text-align: center;
    background: white;
}

.owner-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.owner-info h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.owner-info p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.owner-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.owner-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.owner-social a:hover {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-image,
    .trend-item img {
        height: 350px;
    }
    
    .trend-content {
        padding: 1.5rem;
    }
    
    .trend-content h3 {
        font-size: 1.5rem;
    }
    
    .collection-info h3 {
        font-size: 1.2rem;
    }
    
    .collection h2,
    .about h2,
    .contact h2 {
        font-size: 2.5rem;
    }
    
    .collection-item,
    .city-item {
        margin-bottom: 2rem;
    }

    .owners-section h3 {
        font-size: 2rem;
    }
    
    .owner-image {
        height: 350px;
    }
    
    .owner-quote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .owner-info h4 {
        font-size: 1.8rem;
    }
    
    .owner-info p {
        font-size: 1.1rem;
    }
    
    .owner-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp i {
    font-size: 30px;
}

.floating-whatsapp span {
    position: absolute;
    right: 70px;
    background: #25D366;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover span {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp i {
        font-size: 25px;
    }
    
    .floating-whatsapp span {
        display: none;
    }
}

/* Leadership Section */
.leadership {
    padding: 4rem 0;
    background: var(--light-color);
}

.leadership h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leaders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.leader {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.leader:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    perspective: 1000px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

.leader-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.leader:hover .leader-image::after {
    opacity: 1;
}

.leader:hover .leader-image img {
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(1.1);
}

.leader-info {
    position: relative;
    padding: 2rem;
    background: white;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.leader:hover .leader-info {
    transform: translateY(-10px);
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.leader:hover .leader-social {
    opacity: 1;
    transform: translateY(0);
}

.leader-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.leader h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 1.5rem 0 0.5rem;
}

.leader p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.leader .contact {
    color: var(--primary-color);
    font-weight: 600;
}

.leader .email {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.info-item .info-content p {
    margin: 0.3rem 0;
    color: var(--secondary-color);
}

.info-item .info-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .leadership h3 {
        font-size: 2rem;
    }
    
    .leader-image {
        height: 350px;
    }
    
    .leader h4 {
        font-size: 1.5rem;
    }
    
    .leader p {
        font-size: 1rem;
    }
}

.photo-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    animation: carousel 15s infinite;
}

.photo-carousel img:nth-child(1) {
    animation-delay: 0s;
    opacity: 1;
}

.photo-carousel img:nth-child(2) {
    animation-delay: 4s;
}

.photo-carousel img:nth-child(3) {
    animation-delay: 8s;
}

.photo-carousel img:nth-child(4) {
    animation-delay: 12s;
}

.photo-carousel img:nth-child(5) {
    animation-delay: 16s;
}

@keyframes carousel {
    0%, 18% {
        opacity: 1;
        transform: scale(1.05);
    }
    20%, 98% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.leader:hover .photo-carousel img {
    animation-play-state: paused;
}

/* Profile Box Styles */
.profile-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 2px solid var(--gradient-1);
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gradient-2);
}

.profile-header i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.profile-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 0;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-item:hover {
    background: var(--gradient-1);
    transform: translateX(10px);
}

.profile-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.profile-item p,
.profile-item a {
    margin: 0;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1rem;
}

.profile-item:hover i,
.profile-item:hover p,
.profile-item:hover a {
    color: white;
}

@media (max-width: 768px) {
    .profile-box {
        padding: 1.5rem;
    }
    
    .profile-header i {
        font-size: 2.5rem;
    }
    
    .profile-header h4 {
        font-size: 1.5rem;
    }
    
    .profile-item {
        padding: 0.6rem;
    }
} 