
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Playfair+Display:wght@400;500;600;700;800&display=swap');
:root {
    --primary-color: #8b6914;
    --primary-dark: #6b4e11;
    --secondary-color: #2a2520;
    --accent-color: #a0826d;

    --bg-primary: #f4f1e8;
    --bg-secondary: #ebe6d9;
    --bg-tertiary: #e8e3d6;
    --bg-page: #faf8f3;

    --text-primary: #2a2520;
    --text-secondary: #5a5046;
    --text-light: #8a7d6f;

    --border-color: #d4c9b5;
    --shadow-sm: 0 2px 8px rgba(42, 37, 32, 0.08);
    --shadow-md: 0 4px 16px rgba(42, 37, 32, 0.12);
    --shadow-lg: 0 8px 32px rgba(42, 37, 32, 0.16);

    --gradient-primary: linear-gradient(135deg, #8b6914 0%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, #2a2520 0%, #3d3530 100%);
    --page-texture: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="300" height="300" filter="url(%23noise)" opacity="0.03"/></svg>');
}

[data-theme="dark"] {
    --primary-color: #d4a574;
    --primary-dark: #b8941f;
    --secondary-color: #e8dcc8;
    --accent-color: #c4a57b;

    --bg-primary: #1c1612;
    --bg-secondary: #2a2218;
    --bg-tertiary: #362d23;
    --bg-page: #1a1510;

    --text-primary: #e8dcc8;
    --text-secondary: #c4b5a0;
    --text-light: #998c79;

    --border-color: #4a3f32;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);

    --page-texture: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="300" height="300" filter="url(%23noise)" opacity="0.08"/></svg>');
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Crimson Text', serif;
    background-color: var(--bg-primary);
    background-image: var(--page-texture);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(42, 37, 32, 0.01) 2px,
            rgba(42, 37, 32, 0.01) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(42, 37, 32, 0.01) 2px,
            rgba(42, 37, 32, 0.01) 4px);
    pointer-events: none;
    z-index: 1;
}

[data-theme="dark"] body::before {
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(232, 220, 200, 0.02) 2px,
            rgba(232, 220, 200, 0.02) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(232, 220, 200, 0.02) 2px,
            rgba(232, 220, 200, 0.02) 4px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-page);
    background-image: var(--page-texture);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(42, 37, 32, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(42, 37, 32, 0.15);
    backdrop-filter: blur(10px);
    background: rgba(244, 241, 232, 0.95);
    background-image: var(--page-texture);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(28, 22, 18, 0.95);
    background-image: var(--page-texture);
    border-bottom-color: var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 110px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(139, 105, 20, 0.2));
}

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

/* Responsive Logo Sizes */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo img {
        width: 90px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo img {
        width: 75px;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: 65px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}
.nav-link {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}


.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Libre Baskerville', serif;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--bg-secondary);
    background-image: var(--page-texture);
    border: 2px solid var(--border-color);
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(42, 37, 32, 0.1);
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

.theme-toggle:hover svg {
    color: white;
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-page);
    background-image: var(--page-texture);
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(42, 37, 32, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

[data-theme="dark"] .hero::before {
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(139, 105, 20, 0.15) 0%, rgba(42, 37, 32, 0.25) 100%),
        url('../images/bg2.jpg') center/cover no-repeat;
    filter: sepia(0.3) contrast(1.1);
}

[data-theme="dark"] .hero-bg {
    background:
        linear-gradient(135deg, rgba(139, 105, 20, 0.2) 0%, rgba(28, 22, 18, 0.8) 100%),
        url('../images/bg3.jpg') center/cover no-repeat;
    filter: sepia(0.5) contrast(0.9) brightness(0.7);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.floating-item:hover {
    opacity: 1;
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(4px 4px 8px rgba(139, 105, 20, 0.4));
}

.flower-1 {
    top: 15%;
    left: 10%;
    animation: float-1 8s ease-in-out infinite;
    font-size: 2.5rem;
}

.flower-2 {
    top: 25%;
    right: 15%;
    animation: float-2 10s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 2.2rem;
}

.flower-3 {
    bottom: 20%;
    left: 8%;
    animation: float-3 9s ease-in-out infinite;
    animation-delay: 2s;
    font-size: 2rem;
}

.flower-4 {
    top: 40%;
    left: 5%;
    animation: float-1 11s ease-in-out infinite;
    animation-delay: 1.5s;
    font-size: 2.3rem;
}

.flower-5 {
    bottom: 30%;
    right: 10%;
    animation: float-2 7s ease-in-out infinite;
    animation-delay: 0.5s;
    font-size: 2.4rem;
}

.balloon-1 {
    top: 10%;
    left: 25%;
    animation: float-up 12s ease-in-out infinite;
    font-size: 2.5rem;
}

.balloon-2 {
    top: 50%;
    right: 5%;
    animation: float-up 14s ease-in-out infinite;
    animation-delay: 2s;
    font-size: 2.3rem;
}

.balloon-3 {
    bottom: 15%;
    left: 20%;
    animation: float-up 10s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 2.6rem;
}

.confetti-1 {
    top: 20%;
    right: 25%;
    animation: twinkle 3s ease-in-out infinite;
    font-size: 2rem;
}

.confetti-2 {
    top: 35%;
    right: 30%;
    animation: twinkle 4s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 1.8rem;
}

.confetti-3 {
    bottom: 25%;
    right: 20%;
    animation: twinkle 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
    font-size: 2.2rem;
}

.ring {
    top: 60%;
    left: 12%;
    animation: float-rotate 10s ease-in-out infinite;
    font-size: 2.2rem;
}

.champagne {
    top: 18%;
    right: 8%;
    animation: float-1 9s ease-in-out infinite;
    animation-delay: 1.5s;
    font-size: 2.3rem;
}

.cake {
    bottom: 35%;
    left: 15%;
    animation: float-2 8s ease-in-out infinite;
    font-size: 2.4rem;
}

.music {
    top: 45%;
    right: 12%;
    animation: float-3 7s ease-in-out infinite;
    animation-delay: 2s;
    font-size: 2.1rem;
}

.heart-1 {
    top: 30%;
    left: 18%;
    animation: pulse-float 5s ease-in-out infinite;
    font-size: 2rem;
}

.heart-2 {
    bottom: 40%;
    right: 18%;
    animation: pulse-float 6s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 2.2rem;
}

.gift {
    top: 70%;
    right: 25%;
    animation: float-rotate 11s ease-in-out infinite;
    animation-delay: 1.5s;
    font-size: 2.3rem;
}

@keyframes float-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, -35px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, -15px) rotate(3deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-20px, -25px) rotate(-8deg);
    }

    66% {
        transform: translate(15px, -30px) rotate(8deg);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -40px) rotate(10deg);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.7;
    }
}

@keyframes float-rotate {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -15px) rotate(90deg);
    }

    50% {
        transform: translate(-5px, -25px) rotate(180deg);
    }

    75% {
        transform: translate(15px, -20px) rotate(270deg);
    }
}

@keyframes pulse-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(10px, -15px) scale(1.2);
    }

    50% {
        transform: translate(-5px, -30px) scale(1);
    }

    75% {
        transform: translate(12px, -20px) scale(1.15);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

.reveal-text {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 5rem 3rem;
    background: rgba(244, 241, 232, 0.9);
    background-image: var(--page-texture);
    border: 2px solid var(--border-color);
    box-shadow:
        0 0 0 1px rgba(139, 105, 20, 0.1),
        0 20px 60px rgba(42, 37, 32, 0.3);
    backdrop-filter: blur(10px);
    margin: 0 auto;
}

[data-theme="dark"] .hero-content {
    background: rgba(28, 22, 18, 0.9);
    background-image: var(--page-texture);
    border-color: var(--border-color);
}

.hero-label {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-color);
    color: var(--bg-page);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
    font-family: 'Libre Baskerville', serif;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(42, 37, 32, 0.1);
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.reveal-text {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-text.delay-1 {
    animation-delay: 0.2s;
}

.reveal-text.delay-2 {
    animation-delay: 0.4s;
}

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

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

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

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

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
    font-family: 'Crimson Text', serif;
    line-height: 1.9;
    font-style: italic;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-page);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
    border-width: 2px;
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-page);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(42, 37, 32, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--text-secondary);
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

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

    50% {
        transform: translateY(15px);
        opacity: 0.5;
    }
}

.section {
    padding: 120px 0;
    position: relative;
    background-image: var(--page-texture);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section::after {
    content: '❦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--bg-primary);
    background-image: var(--page-texture);
    padding: 0 20px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Libre Baskerville', serif;
    position: relative;
    padding-bottom: 10px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.25;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(42, 37, 32, 0.05);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.9;
    font-family: 'Crimson Text', serif;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::after {
    content: '◆';
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2rem;
}

.about {
    background: var(--bg-secondary);
    background-image: var(--page-texture);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 8px var(--bg-page),
        inset 0 0 0 10px var(--border-color),
        0 8px 30px rgba(42, 37, 32, 0.2);
    border: 2px solid var(--border-color);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: sepia(0.2) contrast(1.05);
}

.image-wrapper:hover img {
    transform: scale(1.05);
    filter: sepia(0.1) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.15) 0%, rgba(42, 37, 32, 0.15) 100%);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--bg-page);
    padding: 35px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.4);
    animation: float 3s ease-in-out infinite;
    border: 3px solid var(--primary-dark);
}

@keyframes float {

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

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

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Libre Baskerville', serif;
}

.about-content {
    text-align: left;
}

.about-content .section-label,
.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Crimson Text', serif;
    line-height: 1.5;
}

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

.service-card {
    background: var(--bg-page);
    background-image: var(--page-texture);
    padding: 3rem 2.5rem;
    border-radius: 0;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.1),
        0 4px 12px rgba(42, 37, 32, 0.08);
}

.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.service-card::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.service-card::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.2),
        0 12px 30px rgba(42, 37, 32, 0.15);
    border-color: var(--primary-color);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
    width: 30px;
    height: 30px;
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(139, 105, 20, 0.2));
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
}

.service-features li::before {
    content: '✦';
    color: var(--primary-color);
    font-size: 0.8rem;
}

.pricing {
    background: var(--bg-secondary);
    background-image: var(--page-texture);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-page);
    background-image: var(--page-texture);
    border-radius: 0;
    padding: 3.5rem 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.1),
        0 4px 12px rgba(42, 37, 32, 0.08);
}

.pricing-card::before {
    content: '✦';
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.pricing-card::after {
    content: '✦';
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.2),
        0 12px 30px rgba(42, 37, 32, 0.15);
}

.pricing-card:hover::before,
.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.2),
        0 8px 25px rgba(139, 105, 20, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--bg-page);
    padding: 8px 25px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Libre Baskerville', serif;
    text-transform: uppercase;
    border: 2px solid var(--primary-dark);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.pricing-header {
    margin-bottom: 2.5rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 2rem;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.price-currency {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin: 0 8px;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-family: 'Crimson Text', serif;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--bg-page);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.2);
    border: 2px solid var(--primary-dark);
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border: 8px solid var(--bg-page);
    box-shadow:
        inset 0 0 0 1px var(--border-color),
        0 4px 20px rgba(42, 37, 32, 0.15);
    background: var(--bg-page);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: sepia(0.2) contrast(1.05);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: sepia(0.1) contrast(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(42, 37, 32, 0.95) 0%, transparent 100%);
    padding: 2.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-page);
    padding: 6px 16px;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-family: 'Libre Baskerville', serif;
    border: 1px solid var(--primary-dark);
}

.portfolio-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-description {
    color: rgba(244, 241, 232, 0.95);
    font-size: 1rem;
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
}

.team {
    background: var(--bg-secondary);
    background-image: var(--page-texture);
}

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

.team-card {
    background: var(--bg-page);
    background-image: var(--page-texture);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.1),
        0 4px 12px rgba(42, 37, 32, 0.08);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.2),
        0 12px 30px rgba(42, 37, 32, 0.15);
    border-color: var(--primary-color);
}

.team-image {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--border-color);
}

.team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: sepia(0.15) contrast(1.05) grayscale(0.1);
}

.team-card:hover img {
    transform: scale(1.08);
    filter: sepia(0.05) contrast(1.1) grayscale(0);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.team-social a {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-page);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-dark);
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

.team-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(139, 105, 20, 0.4);
}

.team-info {
    padding: 2.5rem;
    text-align: center;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Libre Baskerville', serif;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Crimson Text', serif;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    text-align: left;
}

.contact-info .section-label,
.contact-info .section-title {
    text-align: left;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.contact-form {
    background: var(--bg-page);
    background-image: var(--page-texture);
    padding: 3.5rem;
    border-radius: 0;
    border: 2px solid var(--border-color);
    box-shadow:
        inset 0 0 0 1px rgba(139, 105, 20, 0.1),
        0 4px 12px rgba(42, 37, 32, 0.08);
    position: relative;
}

.contact-form::before,
.contact-form::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    opacity: 0.5;
}

.contact-form::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.contact-form::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: var(--bg-primary);
    background-image: var(--page-texture);
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Crimson Text', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    background-image: var(--page-texture);
    padding: 0 8px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label {
    top: -12px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.footer {
    background: var(--bg-tertiary);
    background-image: var(--page-texture);
    padding: 5rem 0 2rem;
    border-top: 3px double var(--border-color);
    position: relative;
}

.footer::before {
    content: '❦';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: var(--primary-color);
    background: var(--bg-primary);
    background-image: var(--page-texture);
    padding: 0 20px;
}

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

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
}
a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-primary);
    background-image: var(--page-texture);
    border: 2px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 2px solid var(--primary-dark);
    border-radius: 0;
    color: var(--bg-page);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-family: 'Crimson Text', serif;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Crimson Text', serif;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* RESPONSIVE DESIGN - COMPREHENSIVE IMPROVEMENTS */

/* Tablet Styles */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .floating-item {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 4rem 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        background-image: var(--page-texture);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-color);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    .hero {
        padding: 100px 15px 60px;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 1.5rem;
        margin: 0;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-label {
        font-size: 0.7rem;
        padding: 8px 20px;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn {
        padding: 15px 35px;
        font-size: 0.85rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

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

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

    .image-wrapper img {
        height: 400px;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 25px;
    }

    .badge-number {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2.5rem;
    }

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

    .contact-form {
        padding: 2.5rem 2rem;
    }

    .flower-4,
    .flower-5,
    .balloon-3,
    .confetti-2,
    .confetti-3,
    .gift,
    .music {
        display: none;
    }

    .floating-item {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 90px 10px 50px;
    }

    .hero-content {
        padding: 2.5rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 12vw, 2.5rem);
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-label {
        font-size: 0.65rem;
        padding: 6px 15px;
        letter-spacing: 1.5px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 0.8rem;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 0.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.3;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .portfolio-grid {
        gap: 1.5rem;
    }

    .portfolio-image img {
        height: 300px;
    }

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

    .team-image img {
        height: 300px;
    }

    .about-stats {
        gap: 1.5rem;
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .image-wrapper img {
        height: 350px;
    }

    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 20px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .contact-wrapper {
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form::before,
    .contact-form::after {
        width: 20px;
        height: 20px;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer {
        padding: 4rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-logo svg {
        width: 32px;
        height: 32px;
    }

    .newsletter-form input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .newsletter-form button {
        width: 45px;
        height: 45px;
    }

    .balloon-2,
    .heart-2,
    .ring,
    .champagne,
    .cake {
        display: none;
    }

    .floating-item {
        font-size: 1.2rem;
        opacity: 0.5;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

    .service-card,
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .btn {
        padding: 12px 25px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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