/* Custom Fonts */

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Variable.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #831714;
    background-color: #F4F1EA;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #831714;
}

/* Header Styles *//* Header Styles */
.header {
    background-color: #F4F1EA;
    padding: 1rem 0 0 0; /* Remove bottom padding */
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column; /* Stack logo and nav vertically */
    align-items: center;
    border-bottom: 1px solid #831714; /* Bottom line */
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; /* Space between logo and top line */
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-img {
    height: 150px;
    width: auto;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #831714;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    gap: 0.25rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #831714;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    color: #831714;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: #666;
}

.menu-icon {
    font-weight: bold;
}

.cta-button {
    background-color: #831714;
    color: #F4F1EA;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Main Content Styles */
.main-content {
    padding: 2rem 0;
}

.main-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: normal;
    color: #831714;
    text-align: left;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #831714;
    text-align: left;
    margin-bottom: 2rem;
}

/* Visit Page Styles */
.visit-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.visit-info {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #831714;
}

.visit-info p {
    margin-bottom: 0;
    color: #831714;
}

.visit-info ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.visit-info li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #831714;
}

.visit-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #831714;
    font-weight: bold;
}

.visit-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #831714;
}

.visit-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #831714;
}

.visit-info h2:first-child {
    margin-top: 0;
}

.map-container {
    background-color: #F4F1EA;
    border: 1px dashed #831714;
    padding: 2rem;
    border-radius: 8px;
}

.map-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #831714;
}

.map-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.map-description p {
    margin: 0;
    color: #831714;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    border-radius: 8px;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #831714;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #831714;
}

.contact-info h2:first-child {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #831714;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-form-container {
    background-color: #F4F1EA;
    border-radius: 0;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    color: #831714;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #831714;
    font-size: 1rem;
}

.name-fields {
    display: flex;
    gap: 1rem;
}

.name-input {
    flex: 1;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #831714;
    border-radius: 0;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
    color: #831714;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #ccc;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #831714;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background-color: #F4F1EA;
    color: #831714;
    border: 1px solid #831714;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    background-color: #831714;
    color: #F4F1EA;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success and Error Messages */
.form-success,
.form-error {
    background-color: #F4F1EA;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    margin-top: 2rem;
}

.form-success {
    border: 2px solid #831714;
}

.form-success h3 {
    color: #831714;
    margin-bottom: 1rem;
}

.form-error {
    border: 2px solid #f44336;
}

.form-error h3 {
    color: #f44336;
    margin-bottom: 1rem;
}

/* Rent & FAQ Page Styles */
.rent-content,
.faq-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 2rem;
    color: #831714;
}

.rent-content h2,
.faq-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #831714;
}

.rent-content h2:first-child,
.faq-content h2:first-child {
    margin-top: 0;
}

.rent-content p,
.faq-content p {
    margin-bottom: 1.5rem;
    color: #831714;
}

.rent-content p:last-child,
.faq-content p:last-child {
    margin-bottom: 0;
}

.rent-content ul,
.faq-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.rent-content li,
.faq-content li {
    margin-bottom: 0.5rem;
    color: #831714;
}

/* FAQ specific styles */
.faq-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    color: #831714;
}

.faq-content h3:first-child {
    margin-top: 0;
}

/* Ensure all content pages have consistent paragraph spacing */
.content p {
    margin-bottom: 1.5rem;
    color: #831714;
}

.content p:last-child {
    margin-bottom: 0;
}

/* Homepage specific styles */
.homepage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 0;
    align-items: start;
}


.vase-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vase-image {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
.footer {
    background-color: #F4F1EA;
    margin-top: auto;
    padding-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #831714; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #831714;
    margin-bottom: 1rem;
}

.footer-text {
    color: #831714;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #831714;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #F4F1EA;
        border-top: 1px solid #831714;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        margin-left: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .visit-content {
        gap: 2rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .name-fields {
        flex-direction: column;
        gap: 0;
    }
    
    .name-input {
        margin-bottom: 2rem;
    }
    
    .name-input:last-child {
        margin-bottom: 0;
    }
    
    .homepage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vase-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        order: 0;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}

/* Link styles */
a {
    color: #84a0d1;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #3864af;
}