@font-face {
    font-family: shabnam;
    src: url(./fonts/Shabnam-FD-WOL.woff2);
    font-weight: 400;
}

@font-face {
    font-family: shabnam;
    src: url(./fonts/Shabnam-Bold-FD-WOL.woff2);
    font-weight: bold;
}

:root {
    --emerald: #50C878;
    --emerald-dark: #2E8B57;
    --emerald-light: #90EE90;
    --gold: #D4AF37;
    --gold-light: #F9E076;
    --dark: #121212;
    --darker: #0A0A0A;
    --light: #F5F5F5;
    --luxury-gradient: linear-gradient(135deg, var(--emerald), var(--gold));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: shabnam !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* هدر لوکس */
header {
    background: url('./bg.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9));
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 30px;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;

}


.logo::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--luxury-gradient);
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(to right, var(--emerald), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.8);
}

/* بخش دامنه لوکس */
.domain-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

.domain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./bg1.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.domain-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--luxury-gradient);
}

.domain-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(80, 200, 120, 0.2);
    border-top: 3px solid var(--emerald);
    padding: 60px;
    margin-bottom: 60px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    border-color: var(--emerald);
}

.domain-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--luxury-gradient);
    color: var(--darker);
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.domain-name {
    font-size: 5rem;
    font-weight: 700;
    margin: 30px 0;
    background: linear-gradient(to right, var(--emerald), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.domain-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* دکمه‌های لوکس */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    margin: 0 15px;
}

.primary-btn {
    background: var(--luxury-gradient);
    color: var(--darker);
    box-shadow: 0 10px 30px rgba(80, 200, 120, 0.5);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(80, 200, 120, 0.7);
}

.secondary-btn {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--emerald);
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--emerald), var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.secondary-btn:hover::before {
    opacity: 0.2;
}

.secondary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(80, 200, 120, 0.3);
}

/* بخش ویژگی‌های لوکس */
.features-section {
    padding: 120px 0;
    background: url('./bg3.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.95));
    z-index: 0;
}

.features-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(80, 200, 120, 0.1);
    padding: 50px 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--luxury-gradient);
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(80, 200, 120, 0.3);
}

.feature-icon {
    color: #D4AF37;
    width: 60px;
    margin: 0 auto 30px auto;
    background: linear-gradient(to right, var(--emerald), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light);
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* بخش تماس لوکس */
.contact-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(80, 200, 120, 0.2);
    padding: 60px;
    margin-top: 60px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(to right, var(--emerald), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-phone {
    margin: 0 auto 30px auto;
    font-size: 2.5rem;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    gap: 15px;
    direction: ltr;
    display: flex;
    color: var(--light);
    letter-spacing: 2px;
}

.contact-phone svg {
    width: 35px;
    color: var(--emerald);
}

.contact-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* فوتر لوکس */
footer {
    background: var(--darker);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
}

.footer-logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(to right, var(--emerald), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 30px;
    font-size: 0.9rem;
}

/* انیمیشن‌های لوکس */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* رسپانسیو */
@media (max-width: 1200px) {
    h1 {
        font-size: 4rem;
    }

    .domain-name {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }

    .domain-name {
        font-size: 3.5rem;
    }

    .contact-phone {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .logo {
        font-size: 3.5rem;
    }

    .domain-name {
        font-size: 2.8rem;
    }

    .domain-card {
        padding: 40px 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    .domain-name {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-info {
        padding: 40px 20px;
    }
}