:root {
  --dark: linear-gradient(90deg,rgba(36, 43, 49, 1) 0%, rgba(42, 47, 54, 1) 74%, rgba(47, 54, 63, 1) 100%);
  --light: #f7f0e8;
  --beige: #e0cdba;
  --page-bg: #fffff0;
  --beige-gradient: linear-gradient(180deg, #e0cdba 0%, #f7f0e8 60%, #e0cdba 100%);
  --footer-bg: #232220;
  --hero-bg: #232220;
  --font-inter: 'Inter', Arial, Helvetica, sans-serif;
  --font-roslindale: 'Roslindale', sans-serif;

}
@import url('https://fonts.cdnfonts.com/css/roslindale');

@font-face {
  font-family: 'Inter';
  src: url('https://ext.same-assets.com/4089395072/623476531.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('https://ext.same-assets.com/4089395072/2081666296.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roslindale';
  src: url('https://ext.same-assets.com/4089395072/1502380293.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background: var(--page-bg);

}

h1, h2, h3, h4, h5, h6,
header, footer {
  font-family: 'Roslindale', serif !important;
}

p {
  font-family: Arial, sans-serif !important;
}

header, footer {
  font-family: 'Roslindale', serif !important;
}




body {
    font-family: 'Inter', sans-serif;
    background: var(--page-bg);
    color: #1c1c1c;
    overflow-x: hidden;
    position: relative;
}

/* Floating Bubbles */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Ensure bubbles are behind main content but above body background */
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 8%;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 20%;
}

.bubble-3 {
    width: 40px;
    height: 40px;
    top: 35%;
    right: 12%;
}

.bubble-4 {
    width: 80px;
    height: 80px;
    top: 45%;
    right: 18%;
}

.bubble-5 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 5%;
}

.bubble-6 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 30%;
}

.bubble-7 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 25%;
}

.form-container {
    background: var(--page-bg) !important;
    
}

.bubble-8 {
    width: 35px;
    height: 35px;
    top: 70%;
    right: 15%;
}

h1.hero-title {
    margin-bottom: 100px;
}

/* Header specific styles from contact.css, may need to be merged or adjusted with theme's global header styles */
/* .header is used in header.php, these styles will apply if not overridden by WordPress theme styles */
.header {
    background-color: #1c1c1c; /* This is specific, ensure it's intended for the WP theme header */
    padding: 0; /* Reset padding if WP adds its own */
    position: relative; /* Changed from fixed/absolute if it was, to flow with WP structure */
    z-index: 1000; /* High z-index for header */
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px; /* Standard padding */
}

/* Styles for .logo h1 and .nav might be handled by WordPress's custom logo and wp_nav_menu,
   but these are here if direct HTML structure from contact.html's header is maintained. */
.logo h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d1cac1;
}

.contact-btn { /* This class was on a nav link in contact.html */
    border: 1px solid #ffffff;
    border-radius: 25px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffffff;
    color: #1c1c1c;
}

/* Main Content Area - Styles for elements within the contact page template */
.main { /* This class was on the main element in contact.html */
    position: relative;
    z-index: 2; /* Below header, above bubbles */
    /* min-height: 100vh; */ /* May not be needed with WP footer */
    padding: 100px 40px ; /* Top padding to clear header, adjust as needed */
    margin-top: 100px;
}

.hero-section { /* Wrapper for contact page content */
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title { /* "Get In Touch" */
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 400;
    color: #1c1c1c;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1;
}

.content-container { /* Flex container for form and "Let's talk" */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

.form-section {
    flex: 1;
    max-width: 700px;
}

.contact-form { /* Styles for the form itself */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row.full-width {
    flex-direction: column;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #79756f;
    border-radius: 25px;
    padding: 15px 25px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1c1c1c;
    flex: 1;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #79756f;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #1c1c1c;
    background: rgba(255, 255, 255, 0.95);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: 20px; /* Slightly different from input, as per original */
}

/* Quantity Selection - This section was in the original CSS but not visible in contact.html.
   Keeping it here in case it's used on other pages or intended for future use. */
.quantity-section {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #79756f;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}

.quantity-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.quantity-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quantity-row {
    display: flex;
    gap: 40px;
}

.quantity-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.quantity-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #79756f;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.quantity-option input[type="radio"]:checked + .radio-custom {
    border-color: #1c1c1c;
    background-color: #1c1c1c;
}

.quantity-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
}

.option-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1c1c1c;
    font-weight: 400;
}

/* Submit Button for the form */
.submit-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.3s ease;
    padding: 0; /* Reset padding */
}

.submit-btn:hover {
    transform: translateX(5px);
}

.btn-circle { /* Shared class for button circles */
    width: 50px;
    height: 50px;
    background-color: #1c1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.submit-btn:hover .btn-circle {
    background-color: #79756f; /* Darker on hover for submit */
}

.arrow-icon { /* Shared class for arrow icons in buttons */
    width: 20px;
    height: 20px;
    color: #ffffff; /* White arrow for dark circle */
}

.btn-text { /* Shared class for text next to circle buttons */
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1c1c1c;
}

/* Let's Talk Section (right side of form) */
.lets-talk-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 400px;
    margin-top: 200px; /* Pushes it down significantly */
}

.lets-talk-title {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1;
    font-style: italic;
    text-align: right;
}

/* Scrolling Text (below main content, above footer) */
.scrolling-text {
    background-color: #1c1c1c;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 3; /* Above main content's z-index */
    margin-top: 100px; /* Space above it */
}

.scrolling-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.scrolling-content span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-right: 100px;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Adjust if text length changes significantly */
    }
}

/* Footer Styles - .footer class is used in footer.php */
.footer {
    background-color: #1c1c1c; /* Matches header */
    padding: 80px 40px 40px;
    position: relative;
    /* Same as scrolling text, ensure it's above main content */
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
}

.footer-title { /* "Get in Touch" in footer */
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.1;
}

.say-hello-btn { /* Button in footer */
    display: flex;
    align-items: center;
    gap: 15px;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    padding: 0; /* Reset padding */
}

.say-hello-btn:hover {
    transform: translateX(5px);
}

.say-hello-btn .btn-circle { /* Specific styling for this button's circle */
    background-color: #d1cac1; /* Light background for dark arrow */
}

.say-hello-btn .arrow-icon { /* Specific styling for this button's arrow */
    color: #1c1c1c; /* Dark arrow */
}

.say-hello-btn .btn-text { /* Specific styling for this button's text */
    color: #ffffff;
}

.language-options {
    display: flex;
    gap: 20px;
}

.lang-link {
    color: #79756f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.lang-link.active,
.lang-link:hover {
    color: #ffffff;
}

.footer-right {
    flex: 1;
    max-width: 600px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-item,
.social-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #79756f;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word; /* Prevent overflow for long links/emails */
}

.contact-value:hover {
    color: #d1cac1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    grid-column: 1 / -1; /* Span both columns */
}

.social-links .contact-value {
    font-size: 20px; /* Slightly smaller for social links */
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid #42413b; /* Separator line */
    margin-top: 60px;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 8px !important;
    color: white !important;
    letter-spacing: 1px;
}

/* Responsive Design Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
    }

    .lets-talk-title {
        font-size: 70px;
    }

    .content-container {
        gap: 50px;
    }

    .lets-talk-section {
        min-width: 300px;
        margin-top: 150px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
        /* Consider flex-direction: column for very small screens if nav wraps badly */
    }

    .nav {
        gap: 15px; /* Reduced gap */
        /* Consider flex-wrap: wrap; if needed */
    }

    .nav-link {
        font-size: 12px;
    }
    .contact-btn {
        padding: 8px 15px; /* Smaller padding for contact button */
    }


    .main {
        padding: 40px 20px 0;
    }

    .hero-title {
        font-size: 60px;
        margin-bottom: 40px;
    }

    .content-container {
        flex-direction: column;
        gap: 40px;
        align-items: center; /* Center items when stacked */
    }
    .form-section {
        width: 100%; /* Full width on smaller screens */
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .form-input, .form-textarea {
        width: 100%; /* Ensure inputs take full width of their container */
    }


    .quantity-row { /* If quantity section is used */
        flex-direction: column;
        gap: 15px;
    }

    .lets-talk-section {
        margin-top: 40px; /* Reduced top margin */
        min-width: auto; /* Allow it to shrink */
        width: 100%;
        text-align: center; /* Center title text */
    }
    .lets-talk-title {
        font-size: 50px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center; /* Center footer content */
    }
    .footer-left, .footer-right {
        width: 100%;
        max-width: 100%;
        text-align: center; /* Center text within left/right sections */
    }
    .say-hello-btn {
        justify-content: center; /* Center button content */
    }
    .language-options {
        justify-content: center; /* Center language options */
    }


    .footer-title {
        font-size: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr; /* Stack contact items */
        gap: 30px;
        width: 100%;
        max-width: 350px; /* Limit width for better readability */
        margin: 0 auto; /* Center the grid */
    }
    .contact-item, .social-item {
        align-items: center; /* Center content of each item */
    }


    .contact-value {
        font-size: 18px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
    .footer-bottom {
        margin-top: 40px;
        padding-top: 40px;
    }
}
