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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #faf8f5;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

h2, h3, h4 {
    color: #2c1810;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    color: #2c1810;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
}

.section-subtitle {
    color: #7d6e5c;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Cinzel', serif;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-outline-gold {
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    background: transparent;
    font-family: 'Cinzel', serif;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-gold-small {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: white;
    width: 100%;
}

.btn-gold-small:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    transform: translateY(-2px);
    color: white;
}

.navbar {
    padding: 25px 0;
    transition: all 0.5s ease;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-scrolled {
    padding: 15px 0;
    background: rgba(44, 24, 16, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-toggler {
    border-color: rgba(212, 175, 55, 0.5);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: #d4af37;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-brand i {
    color: #d4af37;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    color: white !important;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    padding: 8px 0 !important;
}

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

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

.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #2c1810 0%, #3d2418 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-title span {
    display: block;
    position: relative;
}

.hero-line-1 {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.hero-line-2 {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin: 10px 0;
}

.hero-line-3 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c9b8a4;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-jewelry {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05) contrast(1.1);
    position: relative;
    z-index: 2;
}

.diamond-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 3;
}

.diamond-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(212, 175, 55, 0.8) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.diamond-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: diamond-light 3s ease-in-out infinite;
}

.diamond-sparkle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px white;
}

.sparkle-1 {
    top: 30%;
    left: 20%;
}

.sparkle-2 {
    top: 60%;
    right: 25%;
}

.sparkle-3 {
    bottom: 30%;
    left: 40%;
}

.floating-jewel {
    position: absolute;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.6);
    z-index: 1;
}

.jewel-1 {
    top: 20%;
    left: 10%;
}

.jewel-2 {
    top: 60%;
    right: 15%;
}

.jewel-3 {
    bottom: 20%;
    left: 20%;
}

.collections-section {
    padding: 100px 0;
    background: white;
}

.collection-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.collection-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-info {
    padding: 25px;
}

.collection-info h4 {
    color: #2c1810;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.collection-info p {
    color: #7d6e5c;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.collection-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
}

.rings-section {
    padding: 100px 0;
    background: #faf8f5;
}

.ring-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.ring-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ring-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.ring-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ring-card:hover .ring-image img {
    transform: scale(1.1);
}

.ring-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ring-info {
    padding: 20px;
    text-align: center;
}

.ring-info h5 {
    color: #2c1810;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.ring-info p {
    color: #7d6e5c;
    margin-bottom: 15px;
    font-size: 0.9rem;
    min-height: 40px;
}

.ring-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.necklaces-section {
    padding: 100px 0;
    background: white;
}

.necklace-showcase {
    position: relative;
    padding: 30px;
}

.necklace-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.necklace-image img {
    width: 100%;
    height: auto;
    display: block;
}

.necklace-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 4s infinite;
}

.necklace-content {
    padding-left: 50px;
}

.necklace-description {
    color: #7d6e5c;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.necklace-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 30px;
}

.feature h5 {
    color: #2c1810;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature p {
    color: #7d6e5c;
    margin: 0;
    font-size: 0.95rem;
}

.about-section {
    padding: 100px 0;
    background: #faf8f5;
}

.heritage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.heritage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.heritage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #faf8f5, #e8e1d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.heritage-card:hover .heritage-icon {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    transform: rotateY(180deg);
}

.heritage-icon i {
    font-size: 2rem;
    color: #d4af37;
    transition: all 0.4s ease;
}

.heritage-card:hover .heritage-icon i {
    color: white;
}

.heritage-card h4 {
    color: #2c1810;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.heritage-card p {
    color: #7d6e5c;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer {
    background: #2c1810;
    color: white;
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.footer-brand span {
    color: #d4af37;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand i {
    color: #d4af37;
}

.footer-text {
    color: #c9b8a4;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    transform: translateY(-3px);
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Cinzel', serif;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c9b8a4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

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

.footer-links a:hover {
    color: #d4af37;
    padding-left: 15px;
}

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

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    color: #c9b8a4;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: #d4af37;
    margin-top: 5px;
    min-width: 20px;
}

.newsletter-form .input-group {
    margin-top: 10px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px 0 0 50px;
    color: white;
    padding: 12px 20px;
    border-right: none;
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.newsletter-form .form-control::placeholder {
    color: #c9b8a4;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #c9b8a4;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

@keyframes diamond-light {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .necklace-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .hero-jewelry {
        height: 400px;
        margin-top: 50px;
    }
    
    .diamond-animation {
        transform: scale(0.8) translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .collections-section,
    .rings-section,
    .necklaces-section,
    .about-section {
        padding: 80px 0;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .hero-jewelry {
        height: 300px;
    }
    
    .floating-jewel {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-jewelry {
        height: 250px;
    }
    
    .btn-gold, .btn-outline-gold {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .diamond-animation {
        display: none;
    }
}
 @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
        }
        
        @keyframes slideInLeft {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideInRight {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .animate-spin {
            animation: spin 20s linear infinite;
        }
        
        .animate-sparkle {
            animation: sparkle 2s infinite;
        }
        
        .animate-slide-left {
            animation: slideInLeft 1s ease-out;
        }
        
        .animate-slide-right {
            animation: slideInRight 1s ease-out;
        }
        
        .animate-fade-up {
            animation: fadeInUp 1s ease-out;
        }
        
        .animate-pulse {
            animation: pulse 3s infinite;
        }
        
        .animate-delay-1 {
            animation-delay: 0.3s;
        }
        
        .animate-delay-2 {
            animation-delay: 0.6s;
        }
        
        .animate-delay-3 {
            animation-delay: 0.9s;
        }