@font-face {
    font-family: 'Quattrocento';
    src: url('/fonts/Quattrocento.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Hanuman';
    src: url('/fonts/Hanuman-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'PT Serif';
    src: url('/fonts/PTSerif-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
}

/* style.css for Bespoke Tone Landing Page */

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

html,
body {
    background: transparent;
    font-family: 'PT Serif', serif;
    color: #333;
    scroll-behavior: smooth;
}

main {
    background: white;
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

h1 {
    font-family: 'Hanuman', serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: black;
    letter-spacing: 0.1em;
}

h2 {
    font-family: 'Hanuman', serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #598884;
    letter-spacing: 0.1em;
}

h3 {
    font-family: 'Hanuman', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #598884;
    letter-spacing: 0.2em;
    text-align: center;
    line-height: 2rem;
}

/* Header */
.site-header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: block;
    max-width: none !important;
    width: 313px;
    height: 30px;
    transition: opacity 0.3s ease-in-out;
}

.logo-wrapper {
    display: inline-block;
    height: 30px;
    width: 312.8px;
    /* width of full-size logo */
    overflow: hidden;
    position: relative;
}

.logo-wrapper picture {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.logo img {
    height: 30px !important;
    max-height: 30px !important;
    width: auto;
    display: block;
}

/* Navigation Styling */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    /* Aligns items to the right */
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    /* Allows it to take full space */
    white-space: nowrap;
    position: static;
    /* Keeps it inside the header */
    text-transform: uppercase;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Quattrocento', serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #598884;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #598884;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
}

/* Hero Image */
.hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-text-wrapper {
    position: absolute;
    z-index: 1;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 6px;
    max-width: 100%;
    margin-top: 80px;
}

.hero-content {
    border: 3px solid rgba(89, 136, 132, 0.4);
    padding: 2rem;
    background-color: transparent;
}

.hero-text {
    padding: 1.5rem;
    max-width: 600px;
    text-align: center;
}

.hero h1 {
    font-family: 'Hanuman', serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #598884;
    letter-spacing: 0.1em;
}

.hero h2 {
    color: #598884;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Card Styles */ 
.card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
    flex-wrap: wrap;
    border: none;
}

.card-image {
    flex: 1 1 300px;
    max-width: 400px;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: none !important;
    border: none;
}

.card-content {
    flex: 2 1 400px;
}

.card-content h2 {
    font-family: 'Hanuman', serif;
    text-transform: uppercase;
    color: #598884;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.card-section {
    background-color: #598884 !important;
    color: black;
}

.card-section .card,
.card-section p {
    max-width: 900px;
    margin: 0 auto;
}

/* about section */
#about img {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

#about p {
    margin-bottom: 0 !important;
}

/* editing section */
#editing img {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/* reviews section */
.review-card {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}

.review-overlay {
    background-color: rgba(255, 255, 255, 0.7);
    /* White overlay */
    width: 100%;
    padding: 4rem 2rem;
}

.review-inner {
    max-width: 900px;
    margin: 0 auto;
    color: #000;
}

.review-inner h4 {
    font-size: 1.5rem;
    font-family: 'Hanuman', serif;
    text-transform: uppercase;
    color: #598884;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.2em;
}

.review-inner p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

/* Sections */
.section {
    padding: 30px 2rem 30px;
    max-width: 900px;
    margin: 0 auto;
}

.section:not(.intro) {
    background: white;
}

.section.card-section {
    background-color: rgba(89, 136, 132, 0.1) !important;
    color: black;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section.card-section {
    max-width: none;
}

.section a {
    color: inherit;
    text-decoration: underline;
}

.intro {
    background: transparent !important;
    color: #fff;
    text-align: center;
    padding: 160px 2rem;
    position: relative;
    z-index: 2;
}

.intro-content {
    position: relative;
    z-index: 3;
}

.intro h2,
.intro h3 {
    font-family: 'Hanuman', serif;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.section h2 {
    font-family: 'Hanuman', serif;
    text-transform: uppercase;
    color: #598884;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section p,
.section blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    text-align: justify;
}

blockquote {
    border-left: 4px solid #ccc;
    padding-left: 1rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #598884;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Quattrocento', serif;
    margin-top: 1rem;
}

.cta-button:hover {
    opacity: 0.9;
}

.form-container {
    margin: 2rem auto;
    max-width: 600px;
}

/* Footer Styling */
footer {
    height: 100px;
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    padding: 0;
}

footer p,
footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    /* Optional hover effect */
}

.footer-social-section {
    text-align: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #666666;
    /* Slightly darker gray for better contrast */
    color: white;
    box-sizing: border-box;
}

.footer-social-container {
    display: flex;
    align-items: baseline;
    /* 🟢 THIS is the key */
    justify-content: center;
    gap: 12px;
    height: 100%;
}

.footer-social-container h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: white !important;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 24px;
}

.social-icon {
    width: 24px;
    /* Small size */
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    fill: white;
    color: white;
    transition: transform 0.2s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.1);
    /* Slight zoom effect */
    fill: #F0F0F0;
    color: #F0F0F0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-content {
    text-align: center;
    width: 100%;
    background: linear-gradient(to bottom, #598884, #2f4946);
    box-sizing: border-box;
    height: 60px;
    line-height: 60px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    line-height: 60px;
}

/* Cookie Banner Style - Bespoke Tone */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(89, 136, 132, 0.95);
    /* soft green overlay */
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(6px);
}

#cookie-banner p {
    color: #fff !important;
    margin-bottom: 10px;
    max-width: 800px;
    line-height: 1.6;
}

#cookie-banner a {
    color: #fff !important;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-buttons button {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    min-width: 100px;
    max-width: 300px;
    text-transform: uppercase;
    font-family: 'Quattrocento', serif;
    font-size: 0.85rem;
    transition: background 0.3s ease-in-out;
}

.cookie-buttons button:hover {
    background: #000;
}

.privacy-banner {
    color: white;
}

.privacy-banner p {
    color: white;
}

/* === Privacy Policy Styling for Bespoke Tone === */
.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-family: "PT Serif", Georgia, serif;
    color: #598884;
    line-height: 1.7;
    border-radius: 8px;
}

/* Headings */
.privacy-wrapper h1,
.privacy-wrapper h2 {
    font-family: "Quattrocento", serif;
    color: #598884;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-wrapper h1 {
    font-size: 2.2rem;
    text-align: center;
}

.privacy-wrapper h2 {
    font-size: 1.6rem;
    border-bottom: 2px solid #003d3322;
    padding-bottom: 0.3rem;
}

/* Paragraphs */
.privacy-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Lists */
.privacy-wrapper ul {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.privacy-wrapper li {
    margin-bottom: 0.75rem;
}

/* Links */
.privacy-wrapper a {
    color: #598884;
    text-decoration: underline;
}

.privacy-wrapper a:hover {
    color: #598884;
}

/* Effective date styling */
.privacy-wrapper p[style*="italic"] {
    font-style: italic !important;
    text-align: center !important;
    margin-bottom: 2rem;
}

/* Effective date style override */
.privacy-wrapper p[style*="italic"] {
    font-style: italic !important;
    text-align: center !important;
    margin-bottom: 2rem;
}

@media (max-width: 860px) {
    .card {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .card-image {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .card-content {
        padding: 2rem;
        width: 100%;
        max-width: 860px;
        box-sizing: border-box;
    }

    .card-section .card,
    .card-section p {
        max-width: 860px;
        margin: 0 auto;
    }
}

@media (max-width: 1000px) {
    .logo {
        width: 49.34px !important;
        height: 30px !important;
    }

    .menu-toggle {
        display: block;
        z-index: 4000;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 3000;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-links.nav-active {
        display: flex !important;
    }

    .nav-links a {
        font-size: 24px;
        color: #598884;
        text-decoration: none;
        display: block;
    }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 2rem 1rem;
    }

    .privacy-wrapper h1 {
        font-size: 1.8rem;
    }

    .privacy-wrapper h2 {
        font-size: 1.4rem;
    }

    .hero {
        height: 60vh;
    }

    .hero-text-wrapper {
        margin-top: 80px;
        padding: 10px;
        border-radius: 4px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-text {
        padding: 1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}