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

:root {
    --baby-blue: #E6F3FF;
    --white: #FFFFFF;
    --black: #000000;
    --dark-blue: #206692;
    --text-dark: #000000;
    --text-light: #333333;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--baby-blue);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--baby-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--baby-blue), var(--dark-blue));
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--dark-blue);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(32, 102, 146, 0.1);
}

.order-btn {
    background: var(--dark-blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: #2A7BB8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.order-btn::after {
    display: none;
}

/* Navigation Social Icons */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--black);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--baby-blue);
    transform: translateY(-2px);
    background: rgba(230, 243, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(230, 243, 255, 0.05), rgba(240, 248, 255, 0.1)), url('images/maybehero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 20px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Blur effect for hero background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: 0;
}

/* Vintage effect for hero background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(160, 82, 45, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(210, 180, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(244, 164, 96, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
    filter: sepia(0.3) saturate(0.8) contrast(1.1) brightness(0.95) blur(0);
}



/* Hero Background Texture */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 4;
    animation: fadeInUp 1s ease-out 0.3s both;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Welcome Section */
.welcome {
    background: var(--baby-blue);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(32, 102, 146, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(32, 102, 146, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(32, 102, 146, 0.08) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(32, 102, 146, 0.08) 50%, transparent 60%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(32, 102, 146, 0.06) 20px, rgba(32, 102, 146, 0.06) 21px),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(32, 102, 146, 0.06) 20px, rgba(32, 102, 146, 0.06) 21px);
    background-size: 100px 100px, 100px 100px, 200px 200px, 200px 200px, 40px 40px, 40px 40px;
    background-position: 0 0, 50px 50px, 0 0, 0 0, 0 0, 0 0;
    padding: 80px 0;
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}





.hero-logo-accent {
    margin-bottom: 2rem;
    text-align: center;
}

.word-logo {
    height: 80px;
    width: auto;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.word-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.hero-heading {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: -0.01em;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--dark-blue);
    margin-bottom: 0;
    line-height: 1.2;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-logo-container {
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.hero-title-logo {
    height: 20rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.hero-title-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.tagline {
    font-size: 2.2rem;
    color: var(--black);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 600;
    text-align: center;
}

.main-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}


.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(32, 102, 146, 0.3),
        0 2px 8px rgba(32, 102, 146, 0.2);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: #2A7BB8;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(32, 102, 146, 0.4),
        0 4px 12px rgba(32, 102, 146, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: rgba(230, 243, 255, 0.8);
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: var(--dark-blue);
    color: var(--white);
}





/* Section Styling */
section {
    padding: 140px 0 80px;
}

section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}


/* Custom Orders Section */
.custom-orders {
    padding: 80px 0 60px;
    background: var(--baby-blue);
}

.order-info {
    max-width: 1000px;
    margin: 0 auto;
}

.order-details h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: center;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.order-details > p {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
}

.order-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

/* Add connecting line between steps */
.order-process::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--dark-blue) 20%, var(--dark-blue) 80%, transparent 100%);
    z-index: 1;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(32, 102, 146, 0.2);
    border-color: var(--dark-blue);
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

.process-step:nth-child(1)::before {
    content: '1';
}

.process-step:nth-child(2)::before {
    content: '2';
}

.process-step:nth-child(3)::before {
    content: '3';
}

.process-step:nth-child(4)::before {
    content: '4';
}

.process-step h4 {
    color: var(--black);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}

.process-step p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.pricing-note {
    background: var(--baby-blue);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.pricing-note p {
    color: var(--black);
    font-style: italic;
}



/* Instagram Section */
.instagram-section {
    background: var(--white);
    padding: 80px 0 60px;
}

.instagram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    text-align: center;
}

.instagram-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.instagram-embed iframe {
    border-radius: var(--border-radius);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.instagram-embed iframe:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.instagram-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 600px;
}

.instagram-info h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}

.instagram-info p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.instagram-follow-btn {
    display: inline-block;
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #F77737);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(131, 58, 180, 0.3),
        0 2px 8px rgba(253, 29, 29, 0.2);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.instagram-follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.instagram-follow-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(131, 58, 180, 0.4),
        0 4px 12px rgba(253, 29, 29, 0.3);
}

.instagram-follow-btn:hover::before {
    left: 100%;
}

/* Gallery Section */
.gallery {
    background: var(--baby-blue);
    padding: 140px 0 80px !important;
}





.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Medium screens - 2 column layout */
@media (min-width: 768px) and (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Large screens - 3 column layout */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Extra large screens - 4 column layout */
@media (min-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }
}

/* Gallery Intro */
.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Enhanced Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.3s ease;
    border-radius: inherit;
}

/* Special positioning for collection image */
.gallery-img[alt*="collection"] {
    object-position: center center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.overlay p {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Cake Modal Styles */
.cake-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cake-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: scale(1.1);
}

.cake-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
}

.cake-modal-body .cake-image-container {
    position: relative;
    overflow: hidden;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 400px;
    margin-top: 30px;
    width: 100%;
    height: 200px;
}

.modal-cake-image {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: var(--border-radius);
    display: block;
    margin: 0 auto;
}

.cake-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
}

.cake-details h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-family: "Playwrite AU NSW", cursive;
    text-align: center;
}

.cake-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.cake-actions {
    display: flex;
    justify-content: center;
}

.cake-actions .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
    text-align: center;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .cake-modal {
        padding: 10px;
    }
    
    .cake-modal-content {
        max-height: 95vh;
    }
    
    .cake-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .cake-image-container {
        height: 300px;
    }
    
    .cake-details {
        padding: 1.5rem;
    }
    
    .cake-details h3 {
        font-size: 1.5rem;
    }
    
    .cake-actions {
        flex-direction: column;
    }
    
    .cake-actions .cta-button {
        flex: none;
    }
}

@media (max-width: 480px) {
    .cake-image-container {
        height: 250px;
    }
    
    .cake-details {
        padding: 1rem;
    }
    
    .cake-details h3 {
        font-size: 1.3rem;
    }
    
    .cake-details p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 140px 0 80px !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-content.single-column {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.form-intro h3 {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.form-note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.form-note p {
    color: var(--black);
    font-size: 0.9rem;
    margin: 0;
}

.form-note a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
    box-shadow: 
        0 0 0 3px rgba(32, 102, 146, 0.1),
        0 2px 8px rgba(32, 102, 146, 0.1);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.submit-btn {
    background: var(--black);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.info-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.info-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
}

.info-item h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--black);
}

.instagram-link {
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: var(--text-light);
    transform: translateY(-1px);
}

/* Order Section */
.order {
    background: var(--baby-blue);
    padding: 140px 0 80px !important;
}

/* Force order section padding */
section#order.order {
    padding: 140px 0 80px !important;
}

/* Extra specific rule for order section */
body section#order.order {
    padding: 140px 0 80px !important;
}

.order h2 {
    color: var(--black);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}

.order-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    line-height: 1.6;
}

/* Order Form Styles */
.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
    box-shadow: 
        0 0 0 3px rgba(32, 102, 146, 0.1),
        0 2px 8px rgba(32, 102, 146, 0.1);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.form-group input[type="date"] {
    color: var(--text-dark);
}

.cake-configuration {
    background: var(--baby-blue);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.cake-configuration h3 {
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    border-color: var(--black);
    transform: translateY(-2px);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--black);
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.checkbox-item input[disabled] {
    opacity: 0.6;
}

.checkbox-item input[disabled] + label {
    opacity: 0.6;
    font-style: italic;
}

/* Price Summary */
.price-summary {
    background: var(--baby-blue);
    color: var(--black);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.price-summary h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-line.total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

.price-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Submit Button */
.submit-order-btn {
    width: 100%;
    background: var(--dark-blue);
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0;
}

.submit-order-btn:hover:not(:disabled) {
    background: #2A7BB8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Order Disclaimer */
.order-disclaimer {
    background: var(--baby-blue);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--black);
}

.order-disclaimer p {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-disclaimer ul {
    list-style: none;
    padding: 0;
}

.order-disclaimer li {
    color: var(--black);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.order-disclaimer li:before {
    content: "✓";
    color: var(--black);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Responsive Design for Order Form */
@media (max-width: 768px) {
    .order-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .cake-configuration {
        padding: 1.5rem;
    }
    
    .price-summary {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .order-form {
        padding: 1.5rem 1rem;
    }
    
    .order h2 {
        font-size: 2rem;
    }
    
    .order-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .price-note {
        font-size: 1rem;
    }
    
    .acknowledgment-item label {
        font-size: 1rem;
    }
    
    .checkbox-item {
        padding: 1rem;
        min-height: 44px;
    }
    
    .checkbox-item input[type="checkbox"] {
        width: 24px;
        height: 24px;
    }
    
    .acknowledgment-item {
        padding: 1.25rem;
        min-height: 44px;
    }
    
    .acknowledgment-item input[type="checkbox"] {
        width: 24px;
        height: 24px;
    }
}



/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--baby-blue);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--baby-blue);
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 80px;
        padding: 0 15px;
        justify-content: space-between;
    }
    

    
    .logo-img {
        height: 60px;
        max-width: 120px;
    }
    
    .hero-logo-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-socials {
        margin-top: 1rem;
        margin-left: 0;
        justify-content: center;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .hero {
        padding: 100px 20px 40px;
        min-height: 80vh;
        background-size: cover;
        background-position: center center;
    }
    
    .hero::before {
        background-size: cover;
        background-position: center center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .welcome {
        padding: 60px 20px;
    }
    
    .welcome-content {
        max-width: 100%;
        padding: 0 20px;
    }
    

    
         /* Ensure minimum size for very small screens */
     @media (max-width: 375px) {
         .hero {
             padding: 60px 10px 15px;
         }
     }
    


    .word-logo {
        height: 60px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-title-logo {
        height: 16rem;
        max-width: 100%;
    }

    .tagline {
        font-size: 1.8rem;
        text-align: center;
    }

    .main-message {
        font-size: 1.1rem;
        text-align: center;
    }


    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
    }


    .order-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .order-process::before {
        display: none;
    }

    .order-details h3 {
        font-size: 1.8rem;
    }

    .order-details > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .process-step::before {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        margin: 3rem 1rem 0;
    }
    


    .gallery-img {
        height: 100%;
        object-position: center center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-options {
        flex-direction: column;
        align-items: center;
    }

    .order-option {
        width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }

    section h2 {
        font-size: 2rem;
    }

    section {
        padding: 140px 0;
    }


    
    .order {
        padding: 140px 0 80px !important;
    }
    
    .contact {
        padding-top: 140px !important;
    }
    
    .gallery {
        background: var(--baby-blue);
        padding-top: 140px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 30px;
        min-height: 70vh;
    }
    
    .hero-logo-container {
        max-width: 400px;
    }
    
    .hero-title-logo {
        height: 12rem;
        max-width: 100%;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .main-message {
        font-size: 1rem;
    }

    
    


    .order-process {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-step,
    .contact-form {
        padding: 1.5rem;
    }

    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 100px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Extra small screens (320px and down) */
@media (max-width: 320px) {
    .hero {
        padding: 60px 10px 20px;
        min-height: 60vh;
    }
    
    .hero-logo-container {
        max-width: 300px;
    }
    
    .hero-title-logo {
        height: 10rem;
    }
    
    .logo-img {
        height: 45px;
        max-width: 90px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .order-form {
        margin: 0 0.5rem;
        padding: 1rem 0.75rem;
    }
    
    .cake-configuration,
    .price-summary,
    .acknowledgments-section {
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .main-message {
        font-size: 0.95rem;
    }
}

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

/* Scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.gallery-item,
.info-item {
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(even) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2n) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3n) {
    animation-delay: 0.2s;
}

/* Acknowledgments Section */
.acknowledgments-section {
    background: var(--baby-blue);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--black);
}

.acknowledgments-section h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
    font-family: "Playwrite AU NSW", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.01em;
}

.acknowledgment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.acknowledgment-item:hover {
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.acknowledgment-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--black);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.acknowledgment-item label {
    margin: 0;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    flex: 1;
}

.acknowledgment-item label strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .acknowledgments-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .acknowledgment-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .acknowledgment-item label {
        font-size: 0.9rem;
    }
}

/* Cake Image in Contact Form */
.cake-image-container {
    background: var(--baby-blue);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cake-image-container h4 {
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.selected-cake-image {
    max-width: 150px;
    max-height: 150px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (max-width: 768px) {
    .selected-cake-image {
        max-width: 150px;
        max-height: 150px;
    }
}