/* Reset e variabili CSS */
:root {
    --primary-color: #8B4513;      /* Marrone scuro vichingo */
    --secondary-color: #A0522D;    /* Marrone terra */
    --accent-color: #DAA520;       /* Oro antico */
    --accent-gold: #B8860B;        /* Oro scuro */
    --dark-color: #2F1B14;         /* Marrone molto scuro */
    --dark-red: #654321;           /* Marrone rossiccio scuro */
    --light-color: #F5DEB3;        /* Beige chiaro */
    --text-color: #8B7355;         /* Marrone chiaro per testo */
    --gradient-primary: linear-gradient(135deg, #8B4513, #A0522D);
    --gradient-secondary: linear-gradient(135deg, #2F1B14, #654321);
    --gradient-fire: linear-gradient(135deg, #A0522D, #DAA520, #B8860B);
    --shadow-primary: 0 10px 30px rgba(139, 69, 19, 0.3);
    --shadow-secondary: 0 5px 15px rgba(47, 27, 20, 0.2);
    --shadow-fire: 0 5px 15px rgba(218, 165, 32, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--dark-color);
}

/* Particelle di sfondo */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

#particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(218, 165, 32, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(184, 134, 11, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(139, 69, 19, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(218, 165, 32, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(184, 134, 11, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: snowfall 20s linear infinite;
    opacity: 0.3;
}

#particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, rgba(218, 165, 32, 0.6), transparent),
        radial-gradient(1px 1px at 120px 120px, rgba(184, 134, 11, 0.4), transparent),
        radial-gradient(1px 1px at 180px 180px, rgba(139, 69, 19, 0.5), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: sparkle 15s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes snowfall {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(100vh); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navigazione */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(47, 27, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-gold);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: fireGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.6));
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.1);
    padding: 5px;
    transition: all 0.3s ease;
    /* Fallback se l'immagine non carica */
    min-width: 50px;
    min-height: 50px;
}

.brand-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(218, 165, 32, 0.8));
}

/* Fallback per quando il logo non carica */
.nav-brand span:first-of-type {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    animation: fireGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.6));
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.nav-brand span:first-of-type:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(218, 165, 32, 0.8));
}

@keyframes fireGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.8));
        transform: scale(1.05);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #2F1B14 0%, #654321 50%, #8B4513 100%);
    background-image: url('../images/vikings.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Fallback se l'immagine non carica */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(211, 47, 47, 0.1) 0%, transparent 50%);
    animation: firePulse 4s ease-in-out infinite;
    z-index: 1;
}

/* Pattern vichingo di fallback */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(47, 27, 20, 0.7) 0%, 
            rgba(101, 67, 33, 0.6) 50%, 
            rgba(139, 69, 19, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="runes" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="30" font-family="Arial" font-size="20" fill="rgba(255,215,0,0.1)">ᚠᚢᚦᚨᚱᚲᚷᚹᚺᚾᛁᛃᛇᛈᛉᛊᛏᛒᛖᛗᛚᛜᛞᛟ</text></pattern></defs><rect width="100" height="100" fill="url(%23runes)"/></svg>');
    z-index: 2;
}

/* Overlay scuro per migliorare la leggibilità del testo */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(47, 27, 20, 0.7) 0%, 
        rgba(101, 67, 33, 0.6) 50%, 
        rgba(139, 69, 19, 0.7) 100%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(211, 47, 47, 0.1) 0%, transparent 50%);
    animation: firePulse 4s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 4;
    color: var(--light-color);
    position: relative;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(218, 165, 32, 0.5),
        0 0 20px rgba(184, 134, 11, 0.3),
        0 0 30px rgba(139, 69, 19, 0.4),
        2px 2px 4px rgba(0,0,0,0.8);
    background: linear-gradient(45deg, #B8860B, #DAA520, #A0522D, #8B4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.6));
    }
}

.title-line {
    display: block;
    animation: titleSlide 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes titleSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Bottoni */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #8B4513, #A0522D, #DAA520);
    color: var(--light-color);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    }
    50% { 
        box-shadow: 0 15px 40px rgba(139, 69, 19, 0.6);
    }
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: left 0.3s;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Hero Visual Elements */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-axe, .floating-shield {
    position: absolute;
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.6;
}

.floating-axe {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-shield {
    top: 30%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Sezioni Generiche */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C1810 100%);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="runes" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="20" font-family="Arial" font-size="12" fill="rgba(255,215,0,0.05)">ᚠᚢᚦᚨᚱᚲᚷᚹᚺᚾᛁᛃᛇᛈᛉᛊᛏᛒᛖᛗᛚᛜᛞᛟ</text></pattern></defs><rect width="100" height="100" fill="url(%23runes)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: var(--light-color);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--accent-gold);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forge-animation {
    font-size: 8rem;
    color: var(--secondary-color);
    animation: forge 2s ease-in-out infinite;
}

@keyframes forge {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.3);
    }
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #654321 0%, #8B4513 50%, #2F1B14 100%);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: fireGlow 6s ease-in-out infinite;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(47, 27, 20, 0.9), rgba(101, 67, 33, 0.9));
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(139, 0, 0, 0.9));
}

.product-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    animation: iconGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.5));
}

@keyframes iconGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.8));
        transform: scale(1.1);
    }
}

.product-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.product-card:hover .product-image {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    border-color: var(--accent-gold);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.product-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.product-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-info {
    margin-top: 1rem;
}

.product-category {
    display: inline-block;
    background: var(--gradient-fire);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-fire);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #2C1810 0%, #1A1A1A 100%);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="runes" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><text x="12" y="18" font-family="Arial" font-size="10" fill="rgba(255,215,0,0.03)">ᚠᚢᚦᚨᚱᚲᚷᚹᚺᚾᛁᛃᛇᛈᛉᛊᛏᛒᛖᛗᛚᛜᛞᛟ</text></pattern></defs><rect width="100" height="100" fill="url(%23runes)"/></svg>');
    opacity: 0.2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    border-color: var(--accent-gold);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44,24,16,0.9));
    color: var(--light-color);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}

.gallery-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
    transition: var(--transition);
}

.gallery-link:hover {
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark-color), var(--dark-red));
    color: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.contact-item h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #8B0000 100%);
    color: var(--light-color);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="runes" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-family="Arial" font-size="15" fill="rgba(255,215,0,0.05)">ᚠᚢᚦᚨᚱᚲᚷᚹᚺᚾᛁᛃᛇᛈᛉᛊᛏᛒᛖᛗᛚᛜᛞᛟ</text></pattern></defs><rect width="100" height="100" fill="url(%23runes)"/></svg>');
    opacity: 0.2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-color));
    color: var(--dark-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255,215,0,0.5);
    border-color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,215,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,215,0,0.3);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes clickParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(var(--random-x, 0) * 100px),
            calc(var(--random-y, 0) * 100px)
        ) scale(0);
        opacity: 0;
    }
}
