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

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

body {
    background-color: #0a0a0a;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.heading-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
}

.dark-bg {
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
}

.red-gradient {
    background: linear-gradient(135deg, #d6211d 0%, #b01b18 25%, #d6211d 50%, #b01b18 75%, #d6211d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.gold-bg {
    background: linear-gradient(135deg, #b01b18 0%, #d6211d 50%, #b01b18 100%);
}

.section-padding {
    padding: 6rem 0;
}

.hero-height {
    min-height: 100vh;
}

.card-elegant {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(214, 33, 29, 0.1);
    backdrop-filter: blur(10px);
}

.card-elegant:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(176, 27, 24, 0.2);
    border-color: rgba(214, 33, 29, 0.3);
}

.portfolio-item {
    transition: all 0.5s ease;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(176, 27, 24, 0.1), rgba(214, 33, 29, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: scale(1.05) rotate(1deg);
}

.portfolio-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

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

.nav-link {
    position: relative;
    color: #aaa;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d6211d;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #b01b18, #d6211d);
    transition: width 0.3s ease;
}

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

.btn-gold {
    background: linear-gradient(135deg, #b01b18 0%, #d6211d 100%);
    color: #0a0a0a;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(176, 27, 24, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-gold:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(176, 27, 24, 0.5);
}

.btn-outline-gold {
    border: 1px solid #b01b18;
    color: #b01b18;
    transition: all 0.4s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 27, 24, 0.1), transparent);
    transition: left 0.7s ease;
}

.btn-outline-gold:hover::before {
    left: 100%;
}

.btn-outline-gold:hover {
    background: rgba(176, 27, 24, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(176, 27, 24, 0.2);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b01b18 0%, #d6211d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(214, 33, 29, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 33, 29, 0.3);
    box-shadow: 0 15px 35px rgba(176, 27, 24, 0.2);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 80px;
    color: #b01b18;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(214, 33, 29, 0.2);
    color: #aaa;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, #b01b18 0%, #d6211d 100%);
    color: #0a0a0a;
    border-color: #b01b18;
    transform: scale(1.05);
}

.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #b01b18, transparent);
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.4s ease;
    background: rgba(30, 30, 30, 0.7);
    color: #fff;
    backdrop-filter: blur(5px);
}

.form-input:focus {
    outline: none;
    border-color: #b01b18;
    box-shadow: 0 0 0 3px rgba(176, 27, 24, 0.2);
    transform: scale(1.02);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-glow {
    text-shadow: 0 0 10px rgba(176, 27, 24, 0.5);
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(176, 27, 24, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(176, 27, 24, 0); }
    100% { box-shadow: 0 0 0 0 rgba(176, 27, 24, 0); }
}

.typing-animation {
    overflow: hidden;
    border-right: 2px solid #b01b18;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #b01b18 }
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.particle {
    position: absolute;
    background: rgba(176, 27, 24, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}

.glow-text {
    text-shadow: 0 0 10px rgba(176, 27, 24, 0.7), 0 0 20px rgba(176, 27, 24, 0.5), 0 0 30px rgba(176, 27, 24, 0.3);
}

/* Kerim CSS Style */
/* Floating shape base */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
    opacity: 0.25;
}

/* Morphing shape base */
.morphing-shape {
    width: 200px;
    height: 200px;
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

/* Camera Bubble */
.camera-bubble {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #d6211d, #b01b18);
    top: 10%;
    left: 5%;
}
.camera-bubble::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 40% 40%, #fff, #000);
    border-radius: 50%;
    top: 60px;
    left: 60px;
}

/* Video Bubble */
.video-bubble {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #d6211d, #b01b18);
    top: 40%;
    right: 15%;
}
.video-bubble::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Heart / Wedding Ring Bubble */
.heart-bubble {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #d6211d, #b01b18);
    top: 20%;
    right: 5%;
    clip-path: path('M50 15 C35 0, 0 25, 50 75 C100 25, 65 0, 50 15');
}

/* Morphing Camera Lens */
.morph-camera {
    top: 10%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #d6211d, #b01b18);
    border-radius: 50%;
}

/* Morphing Wedding Ribbon */
.morph-ribbon {
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 120px;
    background: linear-gradient(45deg, #d6211d, #b01b18);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}