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

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

:host, :root {
    --fa-font-solid: normal 900 1em / 1 "Font Awesome 6 Free";
}

:host, :root {
    --fa-font-regular: normal 400 1em / 1 "Font Awesome 6 Free";
}

:host, :root {
    --fa-font-brands: normal 400 1em / 1 "Font Awesome 6 Brands";
}

/* Header and Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    width: 300px;
    margin-right: 2rem;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
/* max-height: 60px; */
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding-top: 0;
}

.nav-links a {
    text-decoration: none;
    color: #BC984A;
    font-weight: normal;
    font-style: normal;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7E6D01;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #BC984A;
    z-index: 1000;
}

/* Modern Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    background-color: #ffffff;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Modern Slider Navigation */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(188, 152, 74, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.slider-button:hover {
    background: rgba(188, 152, 74, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Modern Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(188, 152, 74, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: #BC984A;
    border-color: #fff;
    transform: scale(1.2);
}

/* Responsive Breakpoints */
@media (max-width: 1440px) {
    .hero-slider {
        height: 80vh;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        height: 70vh;
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 40vh;
    }
    
    .slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 40vh;
        margin-top: 50px;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    font-weight: normal;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.welcome-section h1::before,
.welcome-section h1::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background-color: #333;
}

.welcome-section h1::before {
    right: 100%;
    margin-right: 1rem;
}

.welcome-section h1::after {
    left: 100%;
    margin-left: 1rem;
}

.welcome-section .subtitle {
    font-size: 1.3rem;
    color: #333;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.heart-divider {
    color: #BC984A;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.highlight-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 4rem 1.5rem;
    }

    .welcome-section h1 {
        font-size: 2.2rem;
    }

    .welcome-section h1::before,
    .welcome-section h1::after {
        width: 50px;
    }

    .welcome-section .subtitle {
        font-size: 1.1rem;
    }

    .welcome-content p {
        font-size: 1rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }
}

/* About Section */
.about-section {
    padding-top: 120px;  /* Increased padding to account for navbar height */
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.about-text h1 {
    color: #B8860B;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-section {
        padding-top: 100px;  /* Slightly reduced padding for mobile */
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-text {
        padding: 15px;
    }

    .about-text h1 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding-top: 90px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-text h1 {
        font-size: 1.8em;
    }
}

/* Packages Section */
.packages-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.packages-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.packages-section h2 {
    text-align: center;
    color: #BC984A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #BC984A;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card h3 {
    color: #BC984A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.package-card .price {
    color: #BC984A;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.checkout-button {
    background-color: #BC984A;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.checkout-button:hover {
    background-color: #7E6D01;
}

.wedding-note {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: rgba(188, 152, 74, 0.1);
    border-radius: 8px;
}

.wedding-note p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.additional-options {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.additional-options h3 {
    color: #BC984A;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.additional-options ul {
    list-style: none;
    padding: 0;
}

.additional-options li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #333;
}

.additional-options li i {
    color: #BC984A;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 3rem 1rem;
    }

    .packages-section h2 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .additional-options {
        padding: 1.5rem;
    }
}

/* Forms Section */
.forms-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.forms-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.form-section {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-section h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7E6D01;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background-color: #7E6D01;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #8B7A01;
}

/* Footer Styles */
footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    margin-top: auto;
    position: relative;
    z-index: 100;
    padding: 1rem 0;
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.2;
    width: 100%;
    padding: 0 2rem;
}

.legal-links a {
    color: #333;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #7E6D01;
}

.copyright {
    color: #333;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;  /* Match the footer-links font size */
}

.social-links i {
    font-size: 1rem;  /* Slightly larger icons */
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .legal-links {
        margin-bottom: 0.5rem;
    }

    .legal-links a {
        margin: 0 0.75rem;
    }

    .copyright {
        order: 3;
    }

    .social-links {
        order: 2;
        margin-bottom: 0.5rem;
    }

    footer {
        padding: 0.5rem 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

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

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    #cart-icon {
        font-size: 1.2rem;
    }

    .welcome-section h1 {
        font-size: 2.5rem;
    }

    .forms-container {
        grid-template-columns: 1fr;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .logo img {
        height: 40px;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 2rem;
    }
}

/* Package Form Section */
.package-form-section {
    position: relative;
    padding: 40px 20px;
    background: transparent;
}

.package-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(images/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.quote-form-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.quote-form-container form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Make Additional Details take full width */
.quote-form-container .form-group:last-child {
    grid-column: 1 / -1;
}

.form-group {
    position: relative;
    margin-bottom: 0;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #000000;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background-color: #ffffff;
    color: #000000;
    position: relative;
    z-index: 2;
}

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

.submit-btn {
    background-color: #BC984A;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease;
    grid-column: 1 / -1;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #7E6D01;
}

.required-note {
    color: #000000;
    margin-top: 10px;
    text-align: center;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .quote-form-container form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.contact-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    color: #BC984A;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #BC984A;
    margin-right: 1rem;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    color: #BC984A;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .package-form-container {
        padding: 2rem;
    }

    .package-form-content h2 {
        font-size: 2.2rem;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .package-form-section {
        padding: 4rem 1rem;
    }

    .package-form-container {
        padding: 2rem;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 90px;
}

.legal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #BC984A;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.update-date {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #BC984A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 2rem 1rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }
}

/* About Page Styles */
.about-page {
    padding: 2rem;
    padding-top: 180px; /* Increased space from navbar */
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    padding-top: 3rem; /* Increased spacing from top */
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.welcome-text h5 {
    color: #BC984A;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.belief-section,
.mission-section {
    margin-bottom: 2rem;
}

.belief-section h3,
.mission-section h3 {
    color: #BC984A;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.belief-section p,
.mission-section p {
    color: #666;
    line-height: 1.6;
}

.service-area h6 {
    color: #BC984A;
    font-size: 1.1rem;
    font-weight: normal;
    font-style: italic;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image,
    .about-text {
        max-width: 100%;
    }

    .about-title {
        font-size: 2rem;
    }

    .welcome-text h5 {
        font-size: 1.1rem;
    }

    .belief-section h3,
    .mission-section h3 {
        font-size: 1.3rem;
    }
}

.package-form-content form {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

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

/* Make specific form groups take full width */
.form-group:nth-last-child(2), /* Message textarea */
.form-group:last-child, /* Required note */
form > .submit-btn { /* Submit button */
    grid-column: 1 / -1;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.required-note {
    text-align: right;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.submit-btn {
    background-color: #BC984A;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #7E6D01;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .package-form-content form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-form-section {
        padding: 2rem 1rem;
    }
    
    .package-form-content {
        padding: 1.5rem;
    }
    
    .package-form-content h2 {
        font-size: 2rem;
    }
    
    .package-form-content form {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Products Page Styles */
.products-section {
    flex: 1;
    padding: 120px 2rem 2rem;  /* Reduced bottom padding */
    max-width: 1200px;
    margin: 0 auto;
}

.products-section h1 {
    text-align: center;
    color: #BC984A;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: normal;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border: 1px solid #BC984A;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #BC984A;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.product-card p {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-card p:first-of-type {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.add-to-cart {
    background: #BC984A;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background: #9a7a3c;
}

/* Shopping Cart Styles */
#cart-icon {
    position: relative;
    font-size: 1.2rem;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #BC984A;
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
}

.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.cart-overlay.active {
    display: block;
}

.cart-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    padding: 2rem;
    overflow-y: auto;
}

.cart-content h2 {
    color: #BC984A;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 4px;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-weight: 500;
    color: #333;
}

.cart-item-price {
    color: #BC984A;
    font-weight: 500;
}

.remove-item {
    color: #ff4444;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 0.5rem;
}

.cart-total {
    margin: 2rem 0;
    text-align: right;
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    background: #BC984A;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.continue-shopping-btn {
    width: 100%;
    background: #ffffff;
    color: #BC984A;
    padding: 1rem;
    border: 2px solid #BC984A;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.continue-shopping-btn:hover {
    background: #BC984A;
    color: #ffffff;
}

.close-cart-btn {
    width: 100%;
    background: #333;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cart-content {
        width: 100%;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    #cart-items {
        flex: 1;
        overflow-y: auto;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item {
        display: flex;
        align-items: flex-start;
        padding: 1rem;
        background: #f9f9f9;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .cart-item-details {
        padding-right: 0.5rem;
    }

    .cart-item-name {
        font-size: 1rem;
        line-height: 1.4;
    }

    .cart-item-price {
        font-size: 1.1rem;
    }

    .cart-total {
        padding: 1rem 0;
        border-top: 2px solid #eee;
        margin-top: auto;
        font-size: 1.2rem;
        font-weight: 500;
    }

    .shipping-policy {
        padding: 1rem 0;
        border-top: 1px solid #eee;
        font-size: 0.9rem;
        color: #666;
    }

    .cart-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .continue-shopping-btn,
    .checkout-btn,
    .close-cart-btn {
        padding: 0.8rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem;
    }

    .logo {
        width: 220px;
        margin-right: 1rem;
    }

    .logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
    }

    .logo {
        width: 200px;
        margin-right: 0.5rem;
    }

    .logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: none;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

.package-form-section h2 {
    color: #BC984A;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.thank-you-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.thank-you-message.show {
    display: block;
}

.thank-you-message h3 {
    color: #BC984A;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.thank-you-message p {
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.thank-you-message .close-btn {
    background-color: #BC984A;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thank-you-message .close-btn:hover {
    background-color: #7E6D01;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.overlay.show {
    display: block;
}

/* Tablet Devices */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem;
    }

    .logo {
        width: 220px;
        margin-right: 1rem;
    }

    .logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .logo {
        width: 160px;
    }

    .navbar {
        padding: 0.5rem;
    }
}

.welcome-intro {
    color: #B8860B;  /* Gold color */
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

#address2 {
    margin-top: -1rem;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-section h1 {
        font-size: 1.8rem;
    }
}

.shipping-policy {
    padding: 1rem 0;
    border-top: 1px solid #eee;
    margin: 1rem 0;
}

.shipping-policy p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-policy i {
    color: #BC984A;
}

.fa-tag {
    transform: rotate(-45deg);
} 