:root {
    --gold: #D4AF37;
    --gold-light: #E4C65A;
    --gold-dark: #B28A2B;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --white: #FFFFFF;
    --white-off: #F8F8F8;
    --gray: #2A2A2A;
    
    --head: "Antic Didone", serif;
    --font-body: "Faculty Glyphic", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
}

/* Reusable Gold Button */
.btn-gold {
    background-color: var(--gold-dark);
    color: var(--white-off);
    border: none;
    padding: 13px 20px;
    font-family: var(--head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Header - Transparent, sits over hero */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    background: transparent;
}

.header-container {
    max-width: 99vw;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    font-family: var(--head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Desktop Navigation */
.nav-desktop ul {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-desktop a {
    font-family: var(--head);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.nav-desktop a:hover {
    color: var(--gold);
}

/* Desktop Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ig-icon {
    display: flex;
    align-items: center;
    line-height: 0;
}

.ig-icon img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) invert(1);
}

/* Hero Section - 80vh, Unsplash background, no text */
.hero {
    height: 75vh;
    width: 100%;
    background-image: url('/images/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    background-color: rgba(0, 0, 0, 0.25);
}


/* Mobile Elements */
.hamburger,
.mobile-menu {
    display: none;
}

/* Content placeholder for other sections */
.content-placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-off);
    font-family: var(--font-body);
    color: var(--black);
}

/* Tablet / Mobile Styles */
@media (max-width: 768px) {
    .hero, .hero::before{
        height: 70vh;
    }

    .header-container {
        padding: 0 24px;
    }

    .logo a{
        font-size: 1.5rem;
    }

    .nav-desktop,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 10px;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger span {
        width: 35px;
        height: 1px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #664e16;
        z-index: 200;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        overflow-y: auto;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-logo a {
        color: var(--white);
        font-size: 1.5rem;
        text-shadow: none;
    }

    .close-icon {
        width: 26px;
        height: 26px;
        position: relative;
        cursor: pointer;
    }

    .close-icon span {
        position: absolute;
        width: 26px;
        height: 1px;
        background-color: var(--white);
        top: 50%;
        left: 0;
    }

    .close-icon span:first-child {
        transform: rotate(45deg);
    }

    .close-icon span:last-child {
        transform: rotate(-45deg);
    }

    .nav-mobile {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 24px;
    }

    .nav-mobile ul {
        list-style: none;
        width: 100%;
        max-width: 280px;
    }

    .nav-mobile li {
        margin-bottom: 32px;
    }

    .nav-mobile a {
        font-family: var(--head);
        font-size: 32px;
        font-weight: 500;
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
        text-align: left;
        display: block;
    }

    .nav-mobile a:hover {
        color: var(--gold);
    }

    .mobile-footer {
        padding: 40px 24px;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ig-icon-mobile img {
        width: 26px;
        height: 26px;
        filter: brightness(0) invert(1);
    }

    .mobile-cta {
        background-color: var(--gold);
        color: var(--white);
        padding: 12px 28px;
        font-size: 16px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* About Section */
.about {
    padding: 75px 40px;
    background-color: var(--white);
}

.about-container {
    margin: 0 auto;
    text-align: center;
}

.about-brand-name {
    font-family: var(--head);
    font-size: 5.5rem;
    font-weight: bold;
    color: var(--gold-dark);
    letter-spacing: 2px;
    margin-bottom: 15rem;
}

.about-star {
    width: 40px;
    height: auto;
    fill: var(--gold-dark);
    stroke: var(--white-off);
    stroke-width: 2;
}

.about-text {
    font-family: var(--font-head);
    font-size: 2rem;
    line-height: 1.8;
    color: var(--gold-dark);
    margin-bottom: 40px;
    margin-top: 7rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta {
    display: inline-block;
    text-decoration: none;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .about {
        padding: 25px 24px;
    }
    
    .about-brand-name {
        font-size: 3.5rem;
        margin-bottom: 8rem;
    }
    
    .about-text {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .about-svg{
        margin-bottom: 3.5rem;
    }
    
    .about-star {
        width: 25px;
    }

    .about-cta{
        margin-top: 0;
    }
}

/* Founder Section */
.founder {
    background-color: #f0ebe1; /* light gold */
    padding: 100px 0;
    overflow-x: hidden;
}

.founder-container {
    max-width: 95vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Side - Centered */
.founder-left {
    flex: 1;
    text-align: center;
}

.founder-svg {
    margin-bottom: 20px;
}

.founder-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 6rem;
}

.founder-name {
    font-family: var(--head);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.founder-bio {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto 6rem auto;
}

.founder-cta {
    display: inline-block;
    text-decoration: none;
}

/* Right Side - Image with clip-path (top 30% half circle) */
.founder-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founder-image-wrapper {
    width: 100%;
    border-radius: 50% 50% 0 0 / 50% 50% 0 0;
    height: 100vh;
    overflow: hidden;
}

.founder-image-crop {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.founder-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top 20%; /* keeps top portion visible, fills container */
}

/* Mobile */
@media (max-width: 768px) {
    .founder {
        padding: 60px 24px;
    }
    
    .founder-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .founder-label{
        margin-bottom: 3rem;
    }
    
    .founder-name {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;

    }
    
    .founder-bio {
        font-size: 1rem;
        margin-bottom: 4rem;
    }
    
    .founder-image-wrapper {
        border-radius: 50% 50% 0 0 / 40% 40% 0 0;
        height: 55vh;
        width: 90vw;
    }
}

/* Services Section */
.services {
    background-color: var(--white);
    padding: 0;
}

.services-container {
    display: flex;
    align-items: stretch;
    height: fit-content;
}

/* Left Side - Image */
.services-left {
    flex: 1;
    margin-left: 0; /* small gap from left wall */
    padding-left: 0;
}

.services-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Right Side - Content */
.services-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
}

.services-svg {
    margin-bottom: 20px;
}

.services-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 3rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    text-align: center;
}

.services-list li {
    font-family: var(--head);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-dark);
    line-height: 1.4;
    margin-bottom: 15px;
}

.services-cta {
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

/* Mobile */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .services-label, .services-list{
        margin-bottom: 2.5rem;
    }
    
    .services-left {
        height: 50vh;
    }
    
    .services-right {
        padding: 60px 0;
    }
    
    .services-list li {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

/* Image Slider Section */
.slider {
    width: 100%;
    height: 90vh;
    position: relative;
    background-color: var(--black-soft);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    flex: 0 0 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows with Round Gold Background */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--black-soft);
    opacity: 0.8; /* adds transparency */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-arrow:hover {
    opacity: 1; /* becomes solid on hover */
    background-color: var(--gold);
}

.slider-arrow img {
    width: 30px;
    height: 30px;
    display: block;
    filter: brightness(0) invert(1);
}

.slider-arrow-left {
    left: 50px;
}

.slider-arrow-right {
    right: 50px;
}

/* Mobile */
@media (max-width: 768px) {
    .slider {
        height: 100vh;
        position: relative;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        position: absolute;
        bottom: 20px;
        top: auto;
        transform: none;
        opacity: 1;
    }
    
    .slider-arrow img {
        width: 20px;
        height: 20px;
    }
    
    .slider-arrow-left {
        left: 50%;
        transform: translateX(-60px);
    }
    
    .slider-arrow-right {
        left: 50%;
        transform: translateX(20px);
    }
}

/* Testimonial Section */
.testimonial {
    background-color: var(--black);
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 60px;
}

/* Left Side - Text */
.testimonial-left {
    flex: 1;
}

.testimonial-name {
    font-family: var(--head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white-off);
    margin: 0;
    text-align: center;
}

/* Right Side - Image */
.testimonial-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Bottom Arrows */
.testimonial-arrows {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-arrow:hover {
    background-color: var(--gold-dark);
}

.testimonial-arrow img {
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1);
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
        padding-top: 0px;
    }
    
    .testimonial-slide {
        flex-direction: column-reverse;
        padding: 40px 24px;
        gap: 20px;
    }
    
    .testimonial-name {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .testimonial-image {
        max-width: 280px;
    }
    
    .testimonial-arrows {
        bottom: 0px;
        gap: 20px;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-arrow img {
        width: 20px;
        height: 20px;
    }
}

/* CTA Section */
.cta {
    background-color: #f0ebe1;
    padding: 80px 40px;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10rem;
}

/* Left Side - Image */
.cta-left {
    flex: 1;
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Right Side - Content */
.cta-right {
    flex: 1;
    text-align: center;
}

.cta-heading {
    font-family: var(--head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.cta-subheading {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 35px;
    opacity: 0.85;
}

.cta-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    padding: 14px 32px;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
    .cta {
        padding: 60px 24px;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .cta-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-subheading {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .cta-btn-wrapper {
        text-align: center;
    }
    
    .cta-left {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #f0ebe1;
    padding: 70px 40px 30px;
    border-top: solid 1px var(--gold-light);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    padding: 0 15rem;
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col:last-child {
    padding-right: 0;
}

.footer-logo a {
    font-family: var(--head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}

.footer-tagline {
    font-family: var(--head);
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-top: 10px;
    font-style: italic;
}

.footer-heading {
    font-family: var(--head);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover,
.footer-contact a:hover,
.tricky-credit:hover {
    color: var(--gold-dark);
    opacity: 1;
}

.footer-social {
    margin-top: 20px;
}

.footer-ig img {
    width: 25px;
    height: 25px;
    transition: opacity 0.3s ease;
}

.footer-ig:hover img {
    opacity: 0.7;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1400px;
    margin: 50px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--black);
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.tricky-credit {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tricky-credit:hover {
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 24px 30px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: left;
        padding: 0;
        gap: 40px;
    }
    
    .footer-col {
        text-align: left;
        padding: 0 !important;
    }
    
    .footer-logo a {
        font-size: 2rem;
    }
    
    .footer-tagline {
        font-size: 1.2rem;
        margin-top: 8px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 10px;
    }
    
    .footer-links a,
    .footer-contact a,
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .footer-social {
        margin-top: 15px;
        text-align: left;
    }
    
    .footer-ig img {
        width: 28px;
        height: 28px;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.coming-soon-overlay.active {
    visibility: visible;
    opacity: 1;
}

.coming-soon-popup {
    background-color: var(--white);
    max-width: 450px;
    width: 90%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.coming-soon-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--black);
    transition: color 0.3s ease;
}

.coming-soon-close:hover {
    color: var(--gold);
}

.coming-soon-svg {
    margin-bottom: 20px;
}

.coming-soon-star {
    width: 50px;
    height: auto;
    fill: var(--gold);
    stroke: var(--gold);
    stroke-width: 2;
}

.coming-soon-message {
    font-family: var(--head);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.coming-soon-submessage {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 20px;
    opacity: 0.7;
}

.coming-soon-ig {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gold-dark);
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .coming-soon-popup {
        padding: 40px 25px;
        width: 85%;
    }
    
    .coming-soon-message {
        font-size: 1.2rem;
    }
    
    .coming-soon-submessage {
        font-size: 0.9rem;
    }
    
    .coming-soon-star {
        width: 40px;
    }
}