/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3410;
    --secondary-color: #D2691E;
    --accent-color: #F4A460;
    --blue: #0073ff;
    --text-dark: #2C1810;
    --text-light: #666;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);

    /* .btn styling */
    --radius-organic: 2px 8px 2px 6px; /* Subtle handmade feel */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* ===========================
   Layout Utilities
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}



.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}


/* ===========================
   Hand-Drawn Header Style
   =========================== */

.favorites-header {
    text-align: center;
    margin: 60px auto 40px auto;
    padding: 0 20px;
    max-width: 800px;
}

.favorites-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #5d4037; /* Dark Brown */
    margin: 0;
    line-height: 1.1;
}

.favorites-header p {
    font-family: 'Patrick Hand', cursive;
    color: #888;
    font-size: 1.2rem;
    margin: 0;
    font-style: italic;
    margin-top: -5px; /* Pulls the text slightly closer to the loop */
}

/* The Line Container - WIDER and TALLER */
.hand-drawn-line {
    width: 300px;         /* Good width for this specific loop */
    height: 60px;         /* Adjusted height for the crop */
    margin: 0 auto 10px auto; /* Tighter spacing */
    max-width: 90%;
}

.hand-drawn-line svg {
    width: 100%;
    height: 100%;
    overflow: visible; /* Allows the glow to show if you add one */
}

/* Make the line orange (Keep this existing css) */
.hand-drawn-line path {
    stroke: #e67e22; 
    /* Optional: uncomment below for a sketchy look */
    /* stroke-dasharray: 300; animation: draw 1.5s ease-out forwards; */
}


.favorites-header p {
    font-family: 'Patrick Hand', cursive;
    color: #888;
    font-size: 1.2rem;
    margin: 0;
    font-style: italic;
}

/* Optional: Mobile adjustments */
@media (max-width: 600px) {
    .favorites-header h2 {
        font-size: 2.2rem;
    }
.hand-drawn-line {
        width: 240px;
        height: 50px;
    }

}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-organic);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

/* Header Info Styling */
.header-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: auto;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.info-icon {
    font-size: 1rem;
    color: var(--primary-color);
}

.info-text {
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 10;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(139, 69, 19, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background-color: rgba(139, 69, 19, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn::before {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    display: block;
}

.carousel-btn.prev::before {
    transform: rotate(135deg);
    margin-left: 5px;
}

.carousel-btn.next::before {
    transform: rotate(-45deg);
    margin-right: 5px;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: rgba(255, 255, 255, 1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--white);
    z-index: 10;
    max-width: 600px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-family: 'Antenna 700',sans-serif;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ===========================
   Featured Items Section - Card Deck Style
   =========================== */
.featured-items {
    padding: 35px 0;
    background-color: var(--white);
    position: relative;
}

.featured-items .section-title {
    margin-bottom: 0.5rem;
    font-size: 3.5rem;
}

.featured-items .section-subtitle {
    margin-bottom: 2rem;
}

/* Card Deck Container */
.card-deck {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    position: relative;
    margin: 40px auto 30px;
    max-width: 1200px;
    perspective: 1000px;
}

/* Individual Cards in Deck */
.deck-card {
    position: absolute;
    width: 260px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

/* Card positioning - wider spacing for 5 cards */
.deck-card:nth-child(1) {
    transform: translateX(-400px) rotate(-10deg);
    z-index: 1;
}

.deck-card:nth-child(2) {
    transform: translateX(-200px) rotate(-5deg);
    z-index: 2;
}

.deck-card:nth-child(3) {
    transform: translateX(0px) rotate(0deg);
    z-index: 3;
}

.deck-card:nth-child(4) {
    transform: translateX(200px) rotate(5deg);
    z-index: 4;
}

.deck-card:nth-child(5) {
    transform: translateX(400px) rotate(10deg);
    z-index: 5;
}

.deck-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   Homepage Menu Preview (Paper Style)
   =========================== */

.price-list.paper-preview {
    max-width: 1000px;
    margin: 60px auto;
    background-color: #fffcf5; /* The Cream Paper Color */
    padding: 50px;
    border-radius: 4px;
    /* The Paper Shadow Effect */
    box-shadow: 
        0 1px 4px rgba(0,0,0,0.05),
        0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: none; /* Removed the old grey border */
}

/* Decorative Top Accent Line */
.price-list.paper-preview::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 6px;
    background-color: #e67e22; /* Your Orange Accent */
    opacity: 0.6;
    border-radius: 4px 4px 0 0;
}

/* Headers */
.price-intro {
    text-align: center;
    margin-bottom: 40px;
}

.price-intro h3 {
    color: #5d4037; /* Dark Brown */
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.price-intro p {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    color: #888;
}

/* Columns Layout */
.price-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 40px;
    margin-bottom: 30px;
}

.price-column h4 {
    color: #e67e22; /* Orange Accent */
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-family: 'Patrick Hand', cursive;
}

/* The Items (Name ... Price) */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Aligns dots to bottom */
    padding: 8px 0;
}

.price-item .name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2c3e50;
    background-color: #fffcf5; /* Hide dots behind text */
    padding-right: 5px;
    z-index: 2;
}

.price-item .dots {
    flex-grow: 1;
    border-bottom: 2px dotted #dcdcdc;
    margin: 0 5px;
    position: relative;
    top: -5px;
    z-index: 1;
}

.price-item .price {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1rem;
    font-weight: bold;
    color: #5d4037;
    background-color: #fffcf5;
    padding-left: 5px;
    z-index: 2;
    white-space: nowrap;
}

/* Footer & Button */
.price-updated {
    text-align: center;
    font-family: 'Patrick Hand', cursive;
    color: #999;
    font-style: italic;
    margin-bottom: 25px;
}

.price-list .cta-center {
    text-align: center;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .price-columns {
        grid-template-columns: 1fr; /* Stack to 1 column on mobile */
        gap: 30px;
    }
    
    .price-list.paper-preview {
        padding: 30px 20px;
        margin: 40px 15px;
    }
}


/* ===========================
   New CSS: Grouping and Sub-Item Styling
   =========================== */

/* Wrapper to contain the main item line and the small text */
.menu-group {
    /* Ensures the group is a block and has margin between it and the next group */
    margin-bottom: 12px;
}

/* Ensure the main price line keeps its padding */
.menu-group .price-item {
    /* Reduce bottom padding slightly so sub-text starts higher */
    padding-bottom: 0px; 
    padding-top: 0px;
}

/* Styling for the small variant text */
.sub-item-text {
    font-size: 0.9rem; /* Keep it small */
    font-family: 'Patrick Hand', cursive;
    color: #888;
    font-style: italic;
    
    /* THE IMPORTANT PART: Spacing */
    margin-top: 0;      /* Removed negative margin, 0 usually sits tight enough with reduced padding above */
    margin-bottom: 0;   /* Removes the gap below it */
    line-height: 1.2;   /* Keeps lines tight if text wraps */
    
    display: block;
}

/* ===========================
   About Preview Section
   =========================== */
.about-preview {
    padding: 60px 0;
    background-color: var(--cream);
    position: relative;
    margin-top: 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-image {
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: none;
    overflow: hidden;
    width: auto;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===========================
   Location Section
   =========================== */
.location {
    padding: 60px 0;
    background-color: var(--light-gray);
    position: relative;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.location-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 60px 0;
    background-color: var(--cream);
    position: relative;
}

.contact-simple {
    text-align: center;
    max-width: 400px;
    margin: 3rem auto 0;
}

.contact-profile {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-simple .contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-simple .contact-details i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.contact-simple .contact-details p {
    margin: 0;
}

.contact-simple .contact-details a {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-simple .contact-details a:hover {
    color: var(--blue);
    text-decoration: underline;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: start;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    display: block;
}

/* Footer Sections */
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer Contact Items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--text-light);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.footer-contact-item span {
    color: var(--text-light);
}

/* Footer Hours */
.footer-hours-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.footer-hours-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-hours-item p {
    margin-bottom: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-light);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .card-deck {
        min-height: 380px;
        margin: 35px auto 25px;
    }

    .deck-card {
        width: 220px;
        height: 300px;
    }

    .deck-card:nth-child(1) {
        transform: translateX(-320px) rotate(-10deg);
    }

    .deck-card:nth-child(2) {
        transform: translateX(-160px) rotate(-5deg);
    }

    .deck-card:nth-child(3) {
        transform: translateX(0px) rotate(0deg);
    }

    .deck-card:nth-child(4) {
        transform: translateX(160px) rotate(5deg);
    }

    .deck-card:nth-child(5) {
        transform: translateX(320px) rotate(10deg);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 20px 0;
        gap: 0;
        transform: none;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .header-info {
        display: none;
    }

    .card-deck {
        min-height: 300px;
        margin: 30px auto 20px;
    }

    .deck-card {
        width: 180px;
        height: 250px;
    }

    .deck-card:nth-child(1) {
        transform: translateX(-240px) rotate(-8deg);
    }

    .deck-card:nth-child(2) {
        transform: translateX(-120px) rotate(-4deg);
    }

    .deck-card:nth-child(3) {
        transform: translateX(0px) rotate(0deg);
    }

    .deck-card:nth-child(4) {
        transform: translateX(120px) rotate(4deg);
    }

    .deck-card:nth-child(5) {
        transform: translateX(240px) rotate(8deg);
    }

    .price-list {
        max-width: 100%;
        margin: 30px auto 0;
        padding: 40px 30px;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        height: 500px;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .featured-items .section-title {
        font-size: 2.5rem;
    }

    .card-deck {
        min-height: 260px;
        margin: 25px auto 15px;
    }

    .deck-card {
        width: 150px;
        height: 210px;
    }

    .deck-card:nth-child(1) {
        transform: translateX(-200px) rotate(-8deg);
    }

    .deck-card:nth-child(2) {
        transform: translateX(-100px) rotate(-4deg);
    }

    .deck-card:nth-child(3) {
        transform: translateX(0px) rotate(0deg);
    }

    .deck-card:nth-child(4) {
        transform: translateX(100px) rotate(4deg);
    }

    .deck-card:nth-child(5) {
        transform: translateX(200px) rotate(8deg);
    }

    .price-list {
        padding: 35px 25px;
        margin: 25px auto 0;
    }

    .price-list h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .price-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-column h4 {
        font-size: 1.25rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        width: 80%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-image {
        height: 80px;
    }

    .footer-contact-item,
    .footer-hours-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 40px;
    }

    .hero {
        height: 400px;
    }

    .hero-content {
        left: 8%;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .featured-items .section-title {
        font-size: 1.8rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .card-deck {
        min-height: 180px;
        margin: 20px auto 10px;
        min-width: 100%;
    }

    .deck-card {
        width: 110px;
        height: 155px;
    }

    .deck-card:nth-child(1) {
        transform: translateX(-140px) rotate(-8deg);
    }

    .deck-card:nth-child(2) {
        transform: translateX(-70px) rotate(-4deg);
    }

    .deck-card:nth-child(3) {
        transform: translateX(0px) rotate(0deg);
    }

    .deck-card:nth-child(4) {
        transform: translateX(70px) rotate(4deg);
    }

    .deck-card:nth-child(5) {
        transform: translateX(140px) rotate(8deg);
    }

    .price-list {
        padding: 25px 15px;
        margin: 15px auto 0;
        border-radius: 6px;
    }

    .price-list h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .price-columns {
        gap: 20px;
    }

    .price-column h4 {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .price-item {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .price-item span {
        font-size: 0.9rem;
    }

    .price-item strong {
        font-size: 0.95rem;
    }

    .price-note {
        font-size: 0.8rem;
        margin-top: 15px;
    }

    .contact-profile {
        width: 140px;
        height: 140px;
    }

    .contact-name {
        font-size: 1.3rem;
    }

    .contact-simple .contact-details a {
        font-size: 0.95rem;
    }

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

/* ===========================
   Section Dividers
   =========================== */

/* Section Wave Divider (inverted from hero) */
.section-wave {
    display: block;
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    position: relative;
    top: -1px;
}

/* Dotted Line Divider with Icon */
.divider-dotted {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: inherit;
}

.divider-dotted::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, var(--border-color) 40%, transparent 0%);
    background-position: top;
    background-size: 10px 2px;
    background-repeat: repeat-x;
}

.divider-icon {
    background-color: var(--white);
    padding: 0 20px;
    font-size: 1.5rem;
    z-index: 1;
    position: relative;
}

/* Triangle Divider */
.divider-triangle {
    position: relative;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background-color: var(--white);
}

.divider-triangle svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* New subtle upward triangle divider */
.triangle-divider-up {
    width: 100%;
    height: 40px;
    position: relative;
    background: var(--white);
}

.triangle-divider-up svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Triangle Pattern - Subtle */
.triangle-pattern {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.price-updated {
    font-size: 0.8em;
    color: #888;
    text-align: center;
    margin-top: 1em;
}