/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Playfair+Display:wght@400;500;700&family=Roboto:wght@300;400;500&display=swap');
html {
    scroll-behavior: smooth;
    scroll-padding-top: 65px; /* Adjust based on navbar height */
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #4A4A4A; /* Charcoal Gray for text */
    margin: 0;
    padding: 0;
    background-color: #F7E9D7; /* Soft Champagne background */
}
nav {
    position: fixed;
    z-index: 999;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #FFFDF8; /* Pearl White for the navbar */
}
#img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: #000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#ccd{
    background-image: url(./ccd.jpg);
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100px;
}

#fp{
    margin-top: 50px;
    background-image: url(./fp.jpg);
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}
nav ul li a {
    color: #D4AF37; /* Muted Gold for links */
    font-weight: 400;
    font-size: 16px;
    font-family: 'Playfair Display', serif; /* Elegant serif font for links */
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #C9A7A7; /* Dusty Rose on hover */
}

nav .brand-logo {
    font-family: 'Sacramento', cursive;
    color: #D4AF37; /* Muted Gold for logo */
    font-size: 24px;
}

.vid {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: #000; /* Keep video background neutral */
}

section {
    width: 100%;
    min-height: 600px;
    background-color: #FFFDF8; /* Pearl White for sections */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-family: 'Playfair Display', serif; /* Elegant serif font for headings */
}

section h1, section h4 {
    color: #D4AF37; /* Muted Gold for headings */
    font-family: 'Playfair Display', serif; /* Elegant serif font */
}

section p {
    color: whitesmoke; 
    font-family: 'Roboto', sans-serif; /* Clean sans-serif font for paragraphs */
}

section .p {
    color: #4A4A4A; /* Charcoal Gray for text */
    font-family: 'Roboto', sans-serif; /* Clean sans-serif font for paragraphs */
}

.ada {
    font-family: 'Sacramento', cursive;
    color: #C9A7A7; /* Dusty Rose for special text */
}

button, .btn {
    background-color: #C9A7A7; /* Dusty Rose for buttons */
    color: #FFFDF8; /* Pearl White text */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-family: 'Roboto', sans-serif; /* Clean sans-serif font for buttons */
}

button:hover, .btn:hover {
    background-color: #D4AF37; /* Muted Gold on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-weight: 100;
    }

    nav {
        padding: 0 10px;
    }
    nav .brand-logo {
        font-size: 20px;
    }
    nav ul li a {
        font-size: 14px;
        font-weight: 300;
    }

    .vid {
        height: 400px;
    }

    section {
        min-height: 400px;
        padding: 10px;
    }

    h1 {
        font-size: 1.8rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    p {
        font-size: 0.9rem;
    }
    button, .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}
.ma{
    color: #4A4A4A;
}