/* ===========================
   Global Styles
   =========================== */

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

:root {
    --primary-bg: #000000;
    --primary-accent: #0052CC;
    --secondary-accent: #FF0066;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-accent: #FF0066;
    --border-color: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   Container & Layout
   =========================== */

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* ===========================
   Header & Navigation
   =========================== */

.header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 500vh;
    padding: 8rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 82, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #7c8aff 0%, #b8a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(124, 138, 255, 0.3);
    filter: drop-shadow(0 0 20px rgba(124, 138, 255, 0.2));
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
}

.highlight {
    display: inline-block;
    color: var(--secondary-accent);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary-accent);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-accent);
    color: var(--text-primary);
    border: 2px solid var(--primary-accent);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 82, 204, 0.3);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-accent);
    box-shadow: 0 0 30px rgba(0, 82, 204, 0.6);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hookah-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 82, 204, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

/* ===========================
   About Section
   =========================== */

.about {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2,
.services h2,
.contact h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
	text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about p {
    font-size: 1.1rem;
    color: var(--text-secondary);
	text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Services Section
   =========================== */

.services {
    padding: 4rem 2rem;
    background-color: #000000;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 0 20px rgba(0, 82, 204, 0.2);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===========================
   Contact Section
   =========================== */

.contact {
	text-align: center;
    padding: 4rem 2rem;
    background-color: #0a0a0a;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin: 2rem 0;
}

.contact-info p {
    font-size: 1rem;
    margin: 1rem 0;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background-color: #1a1a2e;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 10px rgba(0, 82, 204, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: #000000;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 4rem 2rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .about,
    .services,
    .contact {
        padding: 2rem 1rem;
    }

    .contact-form {
        max-width: 100%;
    }
}

/* ===========================
   Animations
   =========================== */

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

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

.service-card {
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}
