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

/* Screen reader only text for accessibility */
.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 Styles */
.main-footer {
    background: rgba(139, 69, 19, 0.1);
    border-top: 2px solid #d4c4a8;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8b4513;
    text-decoration: none;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #654321;
    text-decoration: underline;
}

.footer-copyright {
    font-family: 'Merriweather', serif;
    font-size: 0.8rem;
    color: #8b4513;
    opacity: 0.8;
}

/* Content Sections */
.content-section {
    margin: 50px 0;
    padding: 30px;
    background: rgba(248, 242, 230, 0.8);
    border-radius: 15px;
    border: 2px solid #d4c4a8;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4513;
    margin: 30px 0 15px 0;
    font-weight: 600;
    text-align: left;
}

.content-section p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #2c1810;
    margin-bottom: 15px;
    text-align: left;
    max-width: none;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.content-section li {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c1810;
    margin-bottom: 8px;
    padding-left: 5px;
}

.content-section a {
    color: #8b4513;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #654321;
}

/* Navigation Active State */
.nav-list a.active {
    background: rgba(139, 69, 19, 0.2);
    color: #8b4513;
    font-weight: bold;
    border-radius: 5px;
}

/* Features List */
.features-list {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Highlight Box */
.highlight-box {
    background: rgba(139, 69, 19, 0.1);
    border: 2px solid #8b4513;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: #2c1810;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.contact-email, .contact-location {
    background: rgba(139, 69, 19, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #d4c4a8;
}

.contact-email h3, .contact-location h3 {
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* FAQ List */
.faq-list {
    text-align: left;
    max-width: 700px;
    margin: 20px auto;
    padding-left: 0;
    list-style: none;
}

.faq-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(248, 242, 230, 0.5);
    border-radius: 8px;
    border-left: 4px solid #8b4513;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Removed duplicate - using the updated version above */

.coming-soon {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f2e6, #f0e8d4);
    border-radius: 10px;
    border: 1px dashed #8b4513;
}

.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 15px;
    font-weight: 700;
}

.coming-soon h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.coming-soon p {
    font-size: 1.4rem;
    color: #2c1810;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-info {
    text-align: center;
    padding: 20px;
}

.contact-info p {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-email {
    font-size: 1.6rem;
    padding: 20px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.contact-email a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #a0522d;
    text-decoration: underline;
}



body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #2c1810;
    background: #f0e8d4;
    background-image: url('parchment_background.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: -1;
}



/* Main Header */
.main-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 60px 10px 60px;
    background: rgba(248, 242, 230, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 8px solid #8b4513;
    border-image: linear-gradient(90deg, 
        transparent 0%, 
        #8b4513 10%, 
        #cd853f 25%, 
        #8b4513 50%, 
        #cd853f 75%, 
        #8b4513 90%, 
        transparent 100%) 1;
    position: relative;
}

/* Antique bottom border decoration */
.main-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 69, 19, 0.3) 5%,
        rgba(205, 133, 63, 0.6) 15%,
        rgba(139, 69, 19, 0.8) 30%,
        rgba(205, 133, 63, 0.9) 50%,
        rgba(139, 69, 19, 0.8) 70%,
        rgba(205, 133, 63, 0.6) 85%,
        rgba(139, 69, 19, 0.3) 95%,
        transparent 100%);
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.3);
}

/* Logo Styling */
.logo-container {
    flex-shrink: 0;
    margin-bottom: 15px;
    text-align: center;
}

.header-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #000000;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 14px;
}

.header-location {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #8b4513;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 1px;
    font-weight: 600;
}

.site-logo {
    max-width: 500px;
    height: auto;
    margin-bottom: 0px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Navigation Styling */
.main-nav {
    width: 100%;
    text-align: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-list li a {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #8b4513;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b4513, #cd853f, #8b4513);
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: #2c1810;
    transform: translateY(-2px);
}

.nav-list li a:hover::before {
    width: 80%;
}

/* Main Content Area */
.main-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: calc(100vh - 140px);
    padding: 60px 60px;
}

/* For home page, center the content vertically */
.main-content.home-content {
    align-items: center;
}

.content-inner {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Override center alignment for content sections to ensure left alignment */
.content-inner .content-section {
    text-align: left;
}

.content-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.content-inner p {
    font-size: 1.2rem;
    color: #2c1810;
    font-style: italic;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Signature Styling */
.signature {
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.signature-love {
    text-align: center;
    color: #000000;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 5px;
}

.signature-name {
    text-align: center;
    color: #000000;
    font-style: normal;
    font-weight: bold;
}

/* Original Announcement Styling */
.original-announcement {
    margin-top: 40px;
    text-align: center;
}

.original-announcement h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    font-style: italic;
}

.announcement-frame {
    display: inline-block;
    padding: 20px;
    background: rgba(240, 232, 212, 0.9);
    border: 8px solid #8b4513;
    border-image: linear-gradient(45deg, #8b4513, #cd853f, #8b4513, #cd853f) 1;
    box-shadow: 
        inset 0 0 0 4px rgba(139, 69, 19, 0.3),
        inset 0 0 0 8px rgba(240, 232, 212, 0.8),
        0 12px 24px rgba(0, 0, 0, 0.4);
    position: relative;
}

.announcement-frame::before,
.announcement-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #cd853f 30%, #8b4513 70%);
    border: 2px solid #8b4513;
    border-radius: 50%;
}

.announcement-frame::before {
    top: -15px;
    left: -15px;
}

.announcement-frame::after {
    bottom: -15px;
    right: -15px;
}

.announcement-image {
    max-width: 100%;
    width: 600px;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 10px 30px;
        text-align: center;
    }
    
    .site-logo {
        max-width: 250px;
    }
    
    .nav-list {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list li a {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .content-inner h1 {
        font-size: 2.2rem;
    }
    
    .content-inner p {
        font-size: 1.1rem;
    }
    
    .main-content {
        padding: 40px 20px;
        min-height: calc(100vh - 200px);
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .announcement-image {
        width: 100%;
        max-width: 500px;
    }
    
    .announcement-frame {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 20px;
    }
    
    .site-logo {
        max-width: 200px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-list li a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .content-inner h1 {
        font-size: 1.8rem;
    }
    
    .content-inner p {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 30px 15px;
        min-height: calc(100vh - 180px);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-footer {
        padding: 20px 15px;
    }
    
    .announcement-image {
        width: 100%;
        max-width: 350px;
    }
    
    .announcement-frame {
        padding: 10px;
    }
    
    .original-announcement h2 {
        font-size: 1.5rem;
    }
    

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mailing List Signup Section */
.mailing-list-signup {
    margin: 30px 0;
    text-align: center;
    padding: 25px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.3);
}

.mailing-list-signup p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-style: italic;
}

.mailing-list-btn {
    background: linear-gradient(135deg, #8b4513, #cd853f);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mailing-list-btn:hover {
    background: linear-gradient(135deg, #654321, #8b4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
}

.mailing-list-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #f8f2e6;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #8b4513;
    animation: slideIn 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, #8b4513, #cd853f);
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.close-modal {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #f0e8d4;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-body p small {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

/* Form Styles */
.mailing-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #8b4513;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #d4c4a8;
    border-radius: 8px;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group input:valid {
    border-color: #28a745;
}

.submit-btn {
    background: linear-gradient(135deg, #8b4513, #cd853f);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #654321, #8b4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateY(-50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Bot Protection - Honeypot Fields */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tabindex: -1 !important;
}

.honeypot-field label,
.honeypot-field input {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 15% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .mailing-list-signup {
        padding: 20px;
        margin: 20px 0;
    }
    
    .mailing-list-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}