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

:root {
    --primary-red: #ed1c24;
    --primary-blue: #1e3799;
    --gold: #d4af37;
    --gold-light: #f5e7c1;
    --dark-bg: #262626;
    --light-bg: #f9f9f9;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: #333;
    overflow-x: hidden;
    background-image: url('../images/backgrounds/static-bg-light.png');
    background-size: cover;
    background-attachment: fixed;
}

/* Header & Footer */
.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff5050 100%);
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/patterns/grain.png');
    opacity: 0.1;
    animation: grain 8s steps(10) infinite;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.header-left, .header-right {
    flex: 1;
}

.header-center {
    flex: 2;
    text-align: center;
}

.mini-logo {
    display: flex;
    align-items: center;
}

.mini-logo-img {
    height: 90px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.header-tagline {
    color: white;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    position: relative;
}

.header-tagline::before, .header-tagline::after {
    content: '✦';
    color: var(--gold);
    margin: 0 10px;
    font-size: 14px;
    vertical-align: middle;
    opacity: 0.8;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-contact {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.header-contact i {
    color: var(--gold);
    font-size: 16px;
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.header-social-icon:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.header::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/diamond-pattern.png');
    background-size: 300px;
    opacity: 0.03;
    pointer-events: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff5050 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/patterns/grain.png');
    opacity: 0.1;
    animation: grain 8s steps(10) infinite;
}

.footer::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 5s infinite;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-contact {
    display: flex;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item i {
    color: var(--gold);
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social-link:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-newsletter {
    display: flex;
    margin-bottom: 15px;
    position: relative;
}

.footer-newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    outline: none;
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
    background: #c09830;
}

.footer-payments {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-payments span {
    font-size: 24px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-divider {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,231,193,0.9) 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/jewelry-pattern.png');
    background-size: 500px;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    transform: scale(0);
    animation: scaleIn 1.2s ease forwards;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.logo {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.logo-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #f5d76e 50%, var(--gold) 100%);
    border-radius: 15px;
    transform: rotate(45deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.logo-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-100%);
    animation: shimmer 5s infinite;
}

.logo-frame::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/patterns/grain.png');
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.logo-content {
    position: relative;
    background: linear-gradient(135deg, #1e1e1e 0%, #333333 100%);
    width: 85%;
    height: 85%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    transform: rotate(45deg);
    z-index: 1;
    overflow: hidden;
}

.logo-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border-radius: 10px;
}

.logo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/subtle-dots.png');
    background-size: 50px;
    opacity: 0.05;
    mix-blend-mode: overlay;
}


/* Counter-rotate the image to keep it straight while frame stays rotated */
.logo-img {
    max-width: 320px;  /* Increased by 60% from 200px */
    max-height: 192px; /* Increased by 60% from 120px */
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
    transform: rotate(-45deg); /* Counter the 45deg rotation from parent */
}

.logo-img:hover {
    filter: drop-shadow(0 8px 25px rgba(255,215,0,0.4));
    transform: rotate(-45deg) scale(1.02); /* Maintain counter-rotation on hover */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    /* Make the logo container smaller on mobile */
    .logo-container {
        margin-bottom: 30px;
    }
    
    .logo {
        width: 220px;  /* Reduce frame size on mobile */
        height: 220px; /* Reduce frame size on mobile */
    }
    
    .logo-img {
        max-width: 180px; /* Adjusted to fit better in smaller frame */
        max-height: 108px; /* Adjusted to fit better in smaller frame */
        transform: rotate(-45deg); /* Counter rotation on mobile too */
    }
    
    .logo-img:hover {
        transform: rotate(-45deg) scale(1.02);
    }
    
    /* Fix title alignment on mobile */
    .title-container {
        text-align: center;
        padding: 0 15px; /* Add padding to prevent text from touching edges */
    }
    
    .title {
        font-size: 1.8rem !important; /* Make title smaller on mobile */
        line-height: 1.2;
        word-wrap: break-word;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .under-renovation {
        font-size: 1.2rem !important;
        text-align: center;
        line-height: 1.3;
    }
}


.flame-icon {
    color: var(--primary-red);
    font-size: 40px;
    margin: 0 5px;
    filter: drop-shadow(0 0 5px rgba(237, 28, 36, 0.5));
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { 
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(237, 28, 36, 0.8));
    }
    20%, 24%, 55% { 
        opacity: 0.5;
        filter: drop-shadow(0 0 2px rgba(237, 28, 36, 0.4));
    }
}

.logo-subtitle {
    font-size: 18px;
    letter-spacing: 8px;
    transform: rotate(-45deg);
    text-transform: uppercase;
    opacity: 0.9;
}

/* Title */
.title-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-red);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

.title::before, .title::after {
    content: '✦';
    color: var(--gold);
    margin: 0 15px;
    font-size: 24px;
    vertical-align: middle;
    opacity: 0.8;
    display: inline-block;
}

.under-renovation {
    text-align: center;
    margin: 0 auto 40px;
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s 0.8s forwards;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    display: block;
}

.under-renovation::after {
    content: '';
    display: block;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    margin: 10px auto 0;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Jewelry Showcase */
.jewelry-showcase {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 30px;
    flex-wrap: wrap;
}

.jewelry-item {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    transform-origin: center;
    transition: all 0.3s ease;
}

.jewelry-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.jewelry-item:nth-child(1) { animation-delay: 1.0s; }
.jewelry-item:nth-child(2) { animation-delay: 1.2s; }
.jewelry-item:nth-child(3) { animation-delay: 1.4s; }
.jewelry-item:nth-child(4) { animation-delay: 1.6s; }

.jewelry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.jewelry-item:hover .jewelry-img {
    transform: scale(1.1);
}

.jewelry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.jewelry-item:hover .jewelry-overlay {
    transform: translateY(0);
}

/* Store Locations */
.store-locations-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,245,245,0.95) 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.store-locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/map-pattern.png');
    background-size: 500px;
    opacity: 0.05;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-size: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before, .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title::before {
    left: -70px;
}

.section-title::after {
    right: -70px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.store-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.location-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-blue));
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.location-card:nth-child(1) { animation-delay: 1.0s; }
.location-card:nth-child(2) { animation-delay: 1.1s; }
.location-card:nth-child(3) { animation-delay: 1.2s; }
.location-card:nth-child(4) { animation-delay: 1.3s; }
.location-card:nth-child(5) { animation-delay: 1.4s; }
.location-card:nth-child(6) { animation-delay: 1.5s; }

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.location-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--gold);
    opacity: 0.3;
}

.location-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
}

.location-name i {
    margin-right: 10px;
    color: var(--primary-red);
    font-size: 20px;
}

.location-address {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.location-address::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #777;
}

.location-phone {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 500;
    margin-top: 15px;
    padding-left: 30px;
    position: relative;
}

.location-phone::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    transform: rotate(15deg);
}

/* Coming Soon Section */
.coming-soon-section {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 55, 153, 0.95) 0%, rgba(37, 65, 178, 0.95) 100%);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    margin-top: 60px;
    color: white;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/gem-pattern.png');
    background-size: 400px;
    opacity: 0.05;
    z-index: 0;
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.sparkle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('../images/patterns/sparkle.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.sparkle-1 {
    top: 20px;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.sparkle-2 {
    top: 50%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.sparkle-3 {
    bottom: 30px;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

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

.coming-soon {
    font-size: 28px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s 1.6s forwards;
    font-weight: 600;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeIn 1s 1.8s forwards;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
}

.countdown-item:nth-child(2) { animation-delay: 1.9s; }
.countdown-item:nth-child(3) { animation-delay: 2.0s; }
.countdown-item:nth-child(4) { animation-delay: 2.1s; }

.countdown-number {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.subscribe {
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s 2.2s forwards;
    position: relative;
    z-index: 1;
}

.subscribe-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.subscribe-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.subscribe-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.subscribe-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.subscribe-button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff5050 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
}

.subscribe-button:hover {
    background: linear-gradient(135deg, #d61920 0%, #e84040 100%);
    box-shadow: 0 5px 20px rgba(237, 28, 36, 0.4);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s 2.3s forwards;
    position: relative;
    z-index: 1;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--primary-red);
    box-shadow: 0 8px 20px rgba(237, 28, 36, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }
    
    .under-renovation {
        font-size: 32px;
    }
    
    .logo {
        width: 220px;
        height: 220px;
    }
    
    .logo-main {
        font-size: 28px;
    }
    
    .logo-subtitle {
        font-size: 14px;
        letter-spacing: 6px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        width: 75px;
        height: 75px;
    }
    
    .countdown-number {
        font-size: 26px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
    
    .jewelry-showcase {
        gap: 15px;
    }
    
    .jewelry-item {
        width: 150px;
        height: 150px;
    }
    
    .header-content {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .header-center {
        order: -1;
        margin-bottom: 10px;
    }
    
    .header-right {
        justify-content: center;
        margin-top: 10px;
    }
    
    .header-tagline::before, .header-tagline::after {
        display: none;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
        height: 180px;
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    .logo-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .title {
        font-size: 24px;
    }
    
    .under-renovation {
        font-size: 28px;
    }
    
    .countdown-item {
        width: 65px;
        height: 65px;
    }
    
    .countdown-number {
        font-size: 22px;
    }
    
    .jewelry-item {
        width: 130px;
        height: 130px;
    }
    
    .coming-soon {
        font-size: 24px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-input {
        border-radius: 5px;
        margin-bottom: 10px;
        padding: 12px 15px;
    }
    
    .subscribe-button {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        padding: 12px;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    .header-contact span {
        display: none;
    }
    
    .header-social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-divider {
        display: none;
    }
}