:root {
    --black: #000000;
    --white: #FFFFFF;
    --blush: #F6DCE7;
    --gold: #D4AF37;
    --charcoal: #2C2C2C;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.accent-text {
    font-family: 'Montserrat Alternates', sans-serif;
}

.hero-text {
    background: linear-gradient(90deg, var(--gold), var(--blush));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-divider {
    border-bottom: 2px solid var(--gold);
    width: 80px;
    margin: 20px auto;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    text-align: center;
}

.portfolio-item {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-caption {
    bottom: 0;
}

.brand-logo {
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Coming Soon Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
    transform: translateY(-20px);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 30px 20px;
        transform: translateY(-10px);
    }
}

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

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--gold);
}

.modal-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-button {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gold-btn {
    background: var(--gold);
    color: var(--black);
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.gold-btn:hover {
    background: transparent;
    color: var(--gold);
}

.black-btn {
    background: var(--black);
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.black-btn:hover {
    background: transparent;
    color: var(--black);
}

.nav-link {
    position: relative;
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end);
}

/* Advanced Animations & Effects */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.4); }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromBottom {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes rotateIn {
    0% { transform: rotate(-180deg) scale(0); opacity: 0; }
    100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

@keyframes zoomIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hero Section Enhanced Animations */
.hero-enhanced {
    position: relative;
    overflow: hidden;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-text-enhanced {
    animation: slideInFromLeft 1.2s ease-out, pulse 3s ease-in-out infinite 2s;
    position: relative;
    z-index: 2;
}

.hero-image-enhanced {
    animation: slideInFromRight 1.2s ease-out, float 6s ease-in-out infinite 1.5s;
    position: relative;
    z-index: 2;
}

.hero-image-enhanced:hover {
    animation-play-state: paused;
    transform: scale(1.05) rotate(2deg);
    transition: all 0.5s ease;
}

/* Enhanced Portfolio Items */
.portfolio-item-enhanced {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.portfolio-item-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

.portfolio-item-enhanced:hover::before {
    left: 100%;
}

.portfolio-item-enhanced:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Video Enhanced Effects */
.video-enhanced {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.video-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(246, 220, 231, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-enhanced:hover::after {
    opacity: 1;
}

.video-enhanced:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Button Enhanced Effects */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Particle Background Effect */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.6;
}

.particle.gold {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.2));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.particle.white {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.particle:nth-child(1) { width: 6px; height: 6px; left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { width: 8px; height: 8px; left: 20%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { width: 4px; height: 4px; left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { width: 7px; height: 7px; left: 40%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(5) { width: 5px; height: 5px; left: 50%; animation-delay: 4s; animation-duration: 8s; }
.particle:nth-child(6) { width: 9px; height: 9px; left: 60%; animation-delay: 5s; animation-duration: 11s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 0.5s; animation-duration: 6s; }
.particle:nth-child(8) { width: 6px; height: 6px; left: 80%; animation-delay: 1.5s; animation-duration: 8s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 2.5s; animation-duration: 7s; }
.particle:nth-child(10) { width: 8px; height: 8px; left: 15%; animation-delay: 3.5s; animation-duration: 10s; }
.particle:nth-child(11) { width: 5px; height: 5px; left: 35%; animation-delay: 4.5s; animation-duration: 9s; }
.particle:nth-child(12) { width: 7px; height: 7px; left: 75%; animation-delay: 5.5s; animation-duration: 8s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blush), #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(10px);
}

.loading-spinner {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.spinner-ring {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(212, 175, 55, 0.2);
    border-top: 6px solid var(--gold);
    border-right: 6px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        opacity: 0.8;
    }
    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem !important;
    }
    
    .typing-effect {
        white-space: normal;
        animation: none;
    }
    
    .hero-enhanced::before {
        animation-duration: 30s;
    }
    
    .portfolio-item-enhanced:hover {
        transform: scale(1.03);
    }
    
    .video-enhanced:hover {
        transform: scale(1.02);
    }
}