@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300;400;500;600;700&display=swap');

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

:root {
    --bg-cream: #F6F4EC;
    --main-heading: #2F5D50;
    --script-logo: #C84A4A;
    --section-header: #C8453D;
    --body-text: #3E5E54;
    --prices: #4A4A4A;
    --dark-leaf: #2E5A4B;
    --light-leaf: #7FA892;
    --berry-accent: #C73A3A;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-cream);
    color: var(--body-text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1.0rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: var(--main-heading);
    /* Dark Green Background */
    padding: 0.6rem 3rem;
    box-shadow: 0 4px 30px rgba(46, 90, 75, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    color: var(--berry-accent);
    margin: 0;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .logo {
    color: var(--bg-cream);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 2.0rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--main-heading);
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--berry-accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-links a::after {
    background: var(--bg-cream);
}

.nav-links a:not(.cart-link):hover {
    color: var(--berry-accent);
}

.navbar.scrolled .nav-links a:not(.cart-link):hover {
    color: #fff;
}

.nav-links a:not(.cart-link):hover::after {
    width: 80%;
}


/* Cart link styling - same as Contact button */
.nav-links .cart-link {
    background: var(--berry-accent);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(200, 74, 74, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links .cart-link::after {
    display: none;
}

.nav-links .cart-link:hover {
    transform: translateY(-2px);
    background: var(--section-header);
    box-shadow: 0 6px 20px rgba(200, 74, 74, 0.4);
}

.navbar.scrolled .nav-links .cart-link {
    background: var(--bg-cream);
    color: var(--main-heading) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links .cart-link:hover {
    background: white;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    position: relative;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--main-heading);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 9px;
    opacity: 1;
}

.menu-btn span:nth-child(3) {
    top: 18px;
}

.navbar.scrolled .menu-btn span {
    background-color: var(--bg-cream);
}

/* Ensure menu icon is visible (dark green) when menu is OPEN, even if scrolled */
.menu-btn.open span {
    background-color: var(--main-heading) !important;
}

.menu-btn.open span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-btn.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    margin: 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--bg-cream);
    max-width: 100%;
}

.hero-content {
    text-align: left;
    z-index: 10;
    flex: 1;
    max-width: 700px;
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
}

.hero-video {
    position: relative;
    z-index: 10;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-shrink: 0;
}

.video-wrapper {
    position: relative;
    width: 250px;
    height: 500px;
}

.video-wrapper:first-child {
    transform: translateY(-30px) rotate(-5deg);
}

.video-wrapper:last-child {
    transform: translateY(30px) rotate(5deg);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px 10px 25px 10px;
    box-shadow: 0 15px 50px rgba(200, 74, 74, 0.3),
        0 5px 20px rgba(47, 93, 80, 0.2);
    transition: transform 0.3s ease;
}

.video-wrapper:hover video {
    transform: scale(1.05);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 25px 10px 25px 10px;
    background: linear-gradient(135deg,
            rgba(200, 74, 74, 0.2) 0%,
            rgba(127, 168, 146, 0.2) 100%);
    z-index: -1;
    opacity: 0.6;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    color: var(--script-logo);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--main-heading);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--berry-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 58, 58, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: var(--section-header);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(199, 58, 58, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Waves Style */
.waves-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    overflow: hidden;
    line-height: 0;
}

/* Waves for About Section - Full Screen Width */
.about .waves-area {
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}

.waves-svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    fill: #7FA892;
    /* Light Leaf */
    opacity: 0.5;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    fill: #2F5D50;
    /* Dark Leaf */
    opacity: 0.6;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    fill: #C84A4A;
    /* Berry Red */
    opacity: 0.7;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
    fill: #C84A4A;
    /* Berry Red - Bottom main wave */
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: var(--section-header);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-leaf);
    margin-bottom: 4rem;
}

/* About Section */
.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 8rem;
    background: var(--bg-cream);
    position: relative;
    overflow: visible;
    scroll-margin-top: 80px;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.about-title {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--section-header);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--body-text);
    font-weight: 400;
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-left .cta-button {
    align-self: flex-start;
    margin-top: 0;
}

.about-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bg-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 30px;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--berry-accent);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--main-heading);
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.bg-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--light-leaf);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

.owner-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(47, 93, 80, 0.3),
        0 10px 30px rgba(200, 74, 74, 0.2);
    transition: transform 0.3s ease;
    background: white;
    padding: 10px;
}

.owner-photo:hover {
    transform: scale(1.05);
}

/* Speciality Section */
.speciality {
    min-height: 100vh;
    display: block;
    padding: 6rem 2rem 8rem;
    background: var(--bg-cream);
    position: relative;
    overflow: visible;
    scroll-margin-top: 80px;
}

.speciality-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 0;
}

.speciality-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.speciality-instagram-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--body-text);
    font-weight: 500;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.instagram-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--berry-accent);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
}

.instagram-icon-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-2px);
}

.instagram-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.instagram-icon-link:hover .instagram-svg {
    transform: scale(1.1);
}

.speciality-title {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--section-header);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

.speciality-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.speciality-points li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.speciality-points li i {
    color: var(--berry-accent);
    font-size: 1.8rem;
    width: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.speciality-point-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.speciality-point-title {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--main-heading);
    font-weight: 600;
    display: block;
}

.speciality-point-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body-text);
    font-weight: 400;
    margin: 0;
}

.speciality-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    gap: 2rem;
    width: 100%;
}

.speciality-gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 650px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
}

.speciality-gallery-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    height: auto;
}

.speciality-gallery-item {
    position: relative;
    width: 160px;
    border-radius: 25px 10px 25px 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(47, 93, 80, 0.25),
        0 5px 15px rgba(200, 74, 74, 0.15);
    flex-shrink: 0;
}

.speciality-overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    color: var(--main-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 0.6rem 0.5rem;
    z-index: 2;
}


/* Staggered Layout - Reel Style */
.speciality-item-1 {
    height: 450px;
    transform: translateY(80px) rotate(-3deg);
}

.speciality-item-2 {
    height: 520px;
    transform: translateY(0px) rotate(2deg);
}

.speciality-item-3 {
    height: 480px;
    transform: translateY(120px) rotate(-2deg);
}

.speciality-gallery-image,
.speciality-gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add decorative glow effect */
.speciality-gallery-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px 10px 25px 10px;
    background: linear-gradient(135deg,
            rgba(200, 74, 74, 0.3) 0%,
            rgba(127, 168, 146, 0.3) 100%);
    z-index: -1;
    opacity: 0.6;
}

/* Speciality Section Waves */
.speciality .waves-area {
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(47, 93, 80, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--berry-accent), var(--section-header));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(47, 93, 80, 0.15);
}

.service-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: var(--main-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-price {
    color: var(--prices);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Links Section */
.links {
    background: linear-gradient(135deg, rgba(200, 69, 61, 0.08) 0%, rgba(127, 168, 146, 0.08) 100%);
    border-radius: 30px;
    padding: 5rem 3rem;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: white;
    color: var(--main-heading);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(47, 93, 80, 0.15);
    transition: all 0.3s ease;
}

.link-button:hover {
    background: var(--dark-leaf);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(47, 93, 80, 0.25);
}

.link-icon {
    font-size: 1.5rem;
}

/* Cake Slider Section */
.cake-slider-section {
    background: var(--bg-cream);
    padding: 4rem 0;
    position: relative;
}

/* Speciality Cake Slider (inside speciality section) */
.speciality-cake-slider {
    width: 100%;
    margin: 4rem auto 0;
    /* padding: 3rem 0; */
    position: relative;
    z-index: 2;
    background: var(--bg-cream);
    overflow: hidden;
}

.cake-slider-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.cake-slider-wrapper {
    width: 100%;
    max-width: 820px;
    overflow: visible;
    /* Allow seeing side images */
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.cake-slider {
    display: flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cake-slider-item {
    flex: 0 0 300px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0.55;
    filter: blur(6px);
    transform: scale(0.82);
    cursor: pointer;
    margin: 0 0.85rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cake-slider-item.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    z-index: 5;
    box-shadow: 0 18px 45px rgba(200, 74, 74, 0.28);
}

.cake-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cake-slider-item.active img {
    transform: scale(1.05);
}

.cake-slider-name {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(18px);
    background: rgba(200, 74, 74, 0.9);
    color: white;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    opacity: 0;
    transition: all 0.5s ease;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cake-slider-item.active .cake-slider-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cake-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--berry-accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 58, 58, 0.3);
    z-index: 10;
    flex-shrink: 0;
}

.cake-slider-arrow:hover {
    background: var(--section-header);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(199, 58, 58, 0.4);
}

.cake-slider-arrow:active {
    transform: scale(0.95);
}

.cake-slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Footer Styles */
.footer {
    background: var(--main-heading);
    color: var(--bg-cream);
    padding: 5rem 4rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--bg-cream);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(246, 244, 236, 0.9);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(246, 244, 236, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #C84A4A;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200, 74, 74, 0.3);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-cream);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: rgba(246, 244, 236, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #C84A4A;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(246, 244, 236, 0.8);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--bg-cream);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(246, 244, 236, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(246, 244, 236, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(246, 244, 236, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #C84A4A;
}

.footer-bottom-links span {
    color: rgba(246, 244, 236, 0.5);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cake-slider-section {
        padding: 3rem 0;
    }

    .speciality-cake-slider {
        margin-top: 3rem;
        padding: 0;
    }

    .cake-slider-container {
        padding: 1.5rem;
    }

    .cake-slider-item {
        flex: 0 0 240px;
        height: 240px;
        margin-right: 1.5rem;
    }

    .cake-slider-name {
        font-size: 0.9rem;
        padding: 0.65rem 0.85rem;
    }

    .cake-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-btn {
        display: flex;
        /* Show burger menu */
    }

    .navbar .nav-links {
        display: flex;
        /* Ensure it overrides any default layout but stays visible for transition */
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        background: rgba(246, 244, 236, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        padding: 4rem 2rem;
    }

    .nav-links a {
        color: var(--main-heading) !important;
    }

    .navbar .nav-links.active {
        right: 0;
    }

    .about {
        padding: 5rem 2rem 7rem;
        scroll-margin-top: 75px;
    }

    .about-container {
        gap: 3rem;
    }

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

    .about-description {
        font-size: 1.1rem;
    }

    .about-image-wrapper {
        max-width: 450px;
        height: 450px;
        margin-top: 3rem;
        /* Space from text */
    }

    .owner-photo {
        max-width: 350px;
    }

    /* Tablet/iPad Pro Fixes */
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        min-height: 100vh;
        padding-top: 8rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 2rem 4rem 2rem;
        z-index: 20;
    }

    .hero-video {
        width: 100%;
        justify-content: center;
        padding: 0 1rem 12rem 1rem;
        /* Much more bottom space for waves */
        margin-top: 2rem;
        z-index: 10;
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
        /* Slightly smaller for iPad */
    }
}

@media (max-width: 1024px) {

    /* iPad Pro and Tablet specific fixes */
    .speciality-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .speciality-left {
        padding-right: 0;
        text-align: center;
    }

    .speciality-title {
        text-align: center;
    }

    .speciality-points {
        align-items: flex-start;
        max-width: 600px;
        margin: 0 auto;
    }

    .speciality-points li {
        text-align: left;
    }

    .speciality-instagram-text {
        justify-content: center;
        text-align: center;
    }

    .speciality-right {
        margin-top: 2rem;
    }

    .speciality-gallery-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .speciality-gallery-grid {
        gap: 1rem;
    }

    .speciality-gallery-item {
        width: 145px;
    }

    .speciality-item-1 {
        height: 420px;
        transform: translateY(70px) rotate(-2.5deg);
    }

    .speciality-item-2 {
        height: 490px;
        transform: translateY(0px) rotate(2deg);
    }

    .speciality-item-3 {
        height: 450px;
        transform: translateY(100px) rotate(-2deg);
    }

    .speciality-cake-slider {
        margin-top: 2rem;
        padding: 2rem 0;
    }
}

@media (max-width: 900px) {
    .video-wrapper {
        width: 160px;
        height: 320px;
    }

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

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

    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .about {
        min-height: auto;
        padding: 4rem 1.5rem 6rem;
        scroll-margin-top: 70px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left {
        padding-right: 0;
        text-align: center;
    }

    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-left .cta-button {
        align-self: center;
    }

    .about-right {
        min-height: 400px;
        margin-top: 2rem;
        /* Ensure space on mobile too */
    }

    .about-image-wrapper {
        max-width: 100%;
        height: 400px;
        margin-top: 0;
        /* Already spaced by container/about-right */
    }

    .owner-photo {
        max-width: 300px;
    }

    .bg-shape-1 {
        width: 200px;
        height: 200px;
    }

    .bg-shape-2 {
        width: 180px;
        height: 180px;
    }

    .bg-shape-3 {
        width: 150px;
        height: 150px;
    }

    .waves-area {
        height: 60px;
    }

    .speciality {
        min-height: auto;
        padding: 4rem 0rem 6rem;
        scroll-margin-top: 70px;
        overflow: visible;
    }

    .speciality-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        overflow: hidden;
    }

    .speciality-left {
        padding-right: 0;
        text-align: center;
    }

    .speciality-instagram-text {
        justify-content: center;
        text-align: center;
        font-size: 1rem;
    }

    .speciality-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .speciality-points {
        align-items: flex-start;
        max-width: 500px;
        margin: 0 auto;
    }

    .speciality-points li {
        text-align: left;
    }

    .speciality-points li i {
        font-size: 1.5rem;
        width: 1.8rem;
    }

    .speciality-point-title {
        font-size: 1.1rem;
    }

    .speciality-point-description {
        font-size: 0.95rem;
    }

    .speciality-right {
        min-height: 400px;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .instagram-svg {
        width: 22px;
        height: 22px;
    }

    .speciality-gallery-wrapper {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 480px;
        margin-top: 0;
        padding: 0 10px;
    }

    .speciality-gallery-grid {
        max-width: 100%;
        width: 100%;
        gap: 0.7rem;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0;
    }

    .speciality-gallery-item {
        width: 95px;
        flex-shrink: 0;
    }

    .speciality-overlay-title {
        font-size: 0.7rem;
        padding: 0.4rem 0.2rem;
    }

    .speciality-item-1 {
        height: 300px;
        transform: translateY(35px) rotate(-2deg);
    }

    .speciality-item-2 {
        height: 360px;
        transform: translateY(0px) rotate(1.5deg);
    }

    .speciality-item-3 {
        height: 330px;
        transform: translateY(50px) rotate(-1.5deg);
    }

    .cake-slider-section {
        padding: 2.5rem 0;
    }

    .cake-slider-container {
        padding: 1rem;
        gap: 0.5rem;
    }

    .cake-slider-item {
        flex: 0 0 240px;
        height: 320px;
        margin: 0 0.5rem;
    }

    .cake-slider-name {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .cake-slider-container {
        padding: 1rem;
    }

    .cake-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .cake-slider-section {
        padding: 2.5rem 0;
    }

    .speciality-cake-slider {
        margin-top: 2.5rem;
        padding: 0;
    }
}

/* Contact Page Styles */


.contact-page-wrapper {
    min-height: 100vh;
    width: 100%;
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    padding: 8rem 2rem 6rem;
}


.contact-container {
    max-width: 900px;
    /* Reduced from 1200px */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* Reduced from 4rem */
    background: white;
    border-radius: 30px;
    padding: 3rem;
    /* Reduced from 4rem */
    box-shadow: 0 20px 60px rgba(47, 93, 80, 0.1);
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

/* ... (keep other styles) ... */

/* Decorative Background / Waves */
.contact-page-wrapper .waves-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    overflow: hidden;
    line-height: 0;
}

/* Left/Top Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: var(--berry-accent);
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1.6rem;
    color: var(--main-heading);
    margin-bottom: 3rem;
    font-weight: 600;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(127, 168, 146, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-heading);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover .icon-box {
    background: var(--main-heading);
    color: white;
    transform: rotate(10deg);
}

.info-text h3 {
    font-size: 1.1rem;
    color: var(--main-heading);
    margin-bottom: 0.2rem;
}

.info-text p {
    color: var(--body-text);
    font-size: 1rem;
}

/* Right/Bottom Social Section */
.contact-social-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 74, 74, 0.05) 0%, rgba(127, 168, 146, 0.1) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.insta-image-wrapper {
    width: 240px;
    height: auto;
    min-height: 150px;
    border-radius: 15px;
    /* Rectangular with slightly rounded corners */
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(200, 74, 74, 0.2);
    margin-bottom: 1rem;
    background: white;
}

.insta-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure full image is visible */
    transition: transform 0.5s ease;
}

.social-card:hover .insta-img {
    transform: scale(1.1);
}

.social-content h3 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--berry-accent);
    margin-bottom: 0.5rem;
}

.social-content p {
    margin-bottom: 1.5rem;
    color: var(--body-text);
}

.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.insta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

/* Slider mobile-friendly overrides */
@media (max-width: 768px) {
    .cake-slider-container {
        padding: 1rem 0;
        justify-content: center;
    }

    .cake-slider-wrapper {
        max-width: 320px;
        mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    }

    .cake-slider-item {
        flex: 0 0 210px;
        height: 270px;
        margin: 0 0.5rem;
        border-radius: 20px;
        filter: blur(5px);
        opacity: 0.6;
        transform: scale(0.84);
    }

    .cake-slider-item.active {
        box-shadow: 0 14px 32px rgba(200, 74, 74, 0.25);
    }

    .cake-slider-name {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        bottom: 14px;
    }

    .cake-slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
}

@media (max-width: 540px) {
    .cake-slider-container {
        padding: 0.75rem 0;
    }

    .cake-slider-wrapper {
        max-width: 260px;
        mask-image: linear-gradient(to right, transparent, black 22%, black 78%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 22%, black 78%, transparent);
    }

    .cake-slider-item {
        flex: 0 0 180px;
        height: 230px;
        margin: 0 0.35rem;
        border-radius: 18px;
        filter: blur(4px);
        transform: scale(0.85);
    }

    .cake-slider-name {
        font-size: 0.8rem;
        padding: 0.55rem 1rem;
        bottom: 12px;
    }

    .cake-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

/* Decorative Background */


/* Media Queries for Contact Page */
@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 700px;
        padding: 3rem;
        gap: 3rem;
        margin-top: 2rem;
    }

    .contact-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .contact-subtitle {
        text-align: center;
        margin-bottom: 2rem;
    }

    .info-items {
        align-items: center;
    }

    .info-item {
        width: 100%;
        max-width: 500px;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.5);
        padding: 1rem;
        border-radius: 15px;
    }

    .contact-social-section {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 7rem 1rem 5rem;
        height: auto;
        min-height: 100vh;
    }

    .contact-container {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .insta-image-wrapper {
        width: 100%;
        max-width: 280px;
    }

    .info-item {
        gap: 1rem;
        padding: 0.8rem;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .insta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}