/* General Styles */
body {
    background: linear-gradient(150deg, rgba(255,248,227,0.6), rgba(244, 216, 250, 0.6), rgb(211, 253, 232, 0.6));
    font-family: 'Didot', serif;
    font-style: italic;
    margin: 0; /* Remove margin to make full width */
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent unwanted horizontal scroll */
}

/* Full-width navigation */
header {
    background: linear-gradient(150deg, rgba(255, 231, 161, 0.2), rgba(238, 164, 255, 0.2), rgba(149, 255, 202, 0.2));
    color: rgba(104, 63, 113, 0.6);
    width: 100%; /* Ensure full width */
    height: 200px;
    position: relative;
    z-index: 1000; /* Place above other elements */
    margin: 0; /* Remove any unwanted margin */
}

/* Blend mode for header text elements */
header nav,
header .nav-links li a,
header .hamburger-menu {
    mix-blend-mode: multiply;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px 0px 0px;
    max-width: 1200px; /* Set max width for centered content */
    margin: 0 auto; /* Center content */
    height:  100%;
}

/* Logo Styling */
.logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    background-color: rgba(255, 231, 161, 0);
    padding-top: 10px;
    transition: width 0.3s, height 0.3s; /* Smooth resize transition */
}

/* Hamburger Menu Styling */
.hamburger-menu {
    font-size: 1.8em;
    cursor: pointer;
    background: none;
    border: none;
    color: rgba(104, 63, 113, 0.6);
    display: none; /* Hide on larger screens */
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(104, 63, 113, 0.6);
    font-weight: bold;
}

/* Responsive Navigation */
@media (max-width: 767px) {
    header {
        height: 120px;
    }
    
    .logo {
        width: 125px; /* Reduce size */
        height: auto; /* Reduce size */
    }

    .nav-links {
        display: none; /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #333;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .nav-links.open {
        display: flex; /* Show when toggled */
    }

    .hamburger-menu {
        display: block; /* Show hamburger on small screens */
    }

    .hero .hero-text h2 {
        font-size: 2em;
    }

    .custom-order iframe {
        height: 1200px !important;
    }


}

/* Full-width hero section */
.hero {
    background-image: url('images/CT_back.jpg');
    background-size: cover;
    background-position: center;
    width: 100%; /* Full width */
    max-width: 100%; /* Prevent overflow beyond 100% */
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin: 0; /* Ensure no margin for full width */
    overflow: hidden; /* Prevent any overflow */
    padding: 0; /* Remove padding to prevent extension */
}

.hero .hero-text {
    max-width: 1200px; /* Set max width for centered content */
    margin: 0 auto;
    padding: 0 20px; /* Add some side padding for smaller screens */
    box-sizing: border-box;
}

.hero-text h2 {
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    padding: 10px 20px;
    background-color: rgba(156, 76, 226, 0.25);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c5a364;
}

/* Gallery Section */
.gallery {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden; /* Prevent overflow issues */
    display: flex;
    /*justify-content: center;
    align-items: center;*/
    flex-direction: column;
}

.gallery iframe {
    width: 100%; /* Full width to adapt to the section */
    max-width: 1200px; /* Optional max-width for larger screens */
    height: calc(100vw * 0.8); /* Make height larger than width */
    border: 0; /* Remove iframe border */
}

.custom-order iframe {
    width: 100%;
    height: 1120px;
    overflow: hidden;
}

/* Section Divider */
.section-divider {
    height: 4px;
    width: 80%;
    margin: 40px auto;
    background: linear-gradient(to right, #b575ff, #2ab2b2);
    border-radius: 5px;
}

/* Sections */
section {
    padding: 40px 20px;
}

/* Specific styling for sections from "about" to "contact" */
.content-section {
    width: 80%; /* Align with width of dividers */
    margin: 0 auto; /* Center the content */
    padding: 40px 0; /* Adjust padding for spacing */
}

/* Footer */
footer {
    background: linear-gradient(to right, #b575ff, #2ab2b2);
    color: #eee;
    text-align: center;
    padding: 20px;
}
