/* ===== Variables ===== */
:root {
    --primary: #6c63ff;
    --primary-dark: #564fd8;
    --secondary: #ff6584;
    --dark: #1e1e2c;
    --dark-alt: #2a2a3a;
    --light: #f8f9fa;
    --light-alt: #e2e3e5;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title span {
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== Loader ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.loader-circle:nth-child(1) {
    border-top-color: var(--primary);
    animation-delay: 0.1s;
}

.loader-circle:nth-child(2) {
    border-top-color: var(--secondary);
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    border-top-color: var(--light);
    animation-delay: 0.3s;
}

.loader-circle:nth-child(4) {
    border-top-color: var(--primary-dark);
    animation-delay: 0.4s;
}

.loader-circle:nth-child(5) {
    border-top-color: var(--dark-alt);
    animation-delay: 0.5s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(30, 30, 44, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--light);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-alt);
    padding: 60px 0 20px;
}

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

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-alt);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    min-height: 60px;
}

.hero-content h2 span {
    color: var(--secondary);
    border-right: 3px solid var(--secondary);
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary) }
}

.hero-content .bio {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-alt);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.avatar-border {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 3px solid var(--primary);
    border-radius: 30px;
    z-index: 1;
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.social-icons {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--dark-alt);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* ===== Skills Section ===== */
.skills {
    padding: 80px 0;
    background: var(--dark-alt);
}

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

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
}

.skill-card:hover {
    transform: translateY(-10px);
    background: rgba(108, 99, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.skill-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* ===== Call to Action ===== */
.cta {
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--light-alt);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 30px;
    color: var(--light-alt);
}

.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-item .content {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.timeline-item .content:hover {
    background: rgba(108, 99, 255, 0.1);
}

.timeline-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.skills-box {
    position: absolute;
    bottom: -50px;
    right: -30px;
    background: var(--dark-alt);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 80%;
    z-index: 2;
}

.skills-box h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.skill {
    margin-bottom: 15px;
}

.skill:last-child {
    margin-bottom: 0;
}

.skill span {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--primary);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease;
}

/* ===== Testimonials ===== */
.testimonials {
    margin-top: 100px;
}

.subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-alt);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
}

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

.quote i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.quote p {
    font-style: italic;
    margin-bottom: 20px;
}

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

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author span {
    font-size: 0.9rem;
    color: var(--light-alt);
}

/* ===== Fun Facts ===== */
.facts {
    padding: 80px 0;
    background: var(--dark);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.fact-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.fact-card:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-10px);
}

.fact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.fact-card h4 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.fact-card p {
    color: var(--light-alt);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .skills-box {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 30px;
    }
}

/* ===== Projects Page ===== */
.projects-page {
    padding: 100px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-buttons button {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: var(--primary);
    color: var(--light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--dark-alt);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

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

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 99, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.overlay h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overlay p {
    color: var(--light-alt);
    margin-bottom: 20px;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-links a {
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.project-links a:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.project-info p {
    color: var(--light-alt);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.project-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--light-alt);
}

.project-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-stats i {
    color: var(--primary);
}

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

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

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

/* CTA Projects */
.cta-projects {
    background: var(--dark-alt);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 200px;
    }
}

/* ===== DJ Hero ===== */
.dj-hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/dj-bg.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light);
    padding: 0 20px;
}

.dj-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.dj-hero h1 span {
    color: var(--primary);
}

.dj-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
}

/* ===== Latest Mix ===== */
.latest-mix {
    padding: 80px 0;
    background: var(--dark);
}

.mix-container {
    background: var(--dark-alt);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mix-player {
    width: 100%;
}

.mix-controls {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.mix-controls button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tracklist {
    padding: 20px;
}

.tracklist h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tracklist ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tracklist li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Mixes Gallery ===== */
.mixes-gallery {
    padding: 80px 0;
    background: var(--dark-alt);
}

.mixes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mix-card {
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

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

.mix-thumbnail {
    position: relative;
    height: 200px;
}

.mix-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--light);
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.mix-card:hover .play-btn {
    opacity: 1;
}

.mix-info {
    padding: 20px;
}

.mix-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.mix-info p {
    color: var(--light-alt);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mix-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--light-alt);
}

.mix-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mix-stats i {
    color: var(--primary);
}

/* ===== Events Section ===== */
.events {
    padding: 80px 0;
    background: var(--dark);
}

.events-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-btn {
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: var(--light-alt);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.tab-btn:hover::after,
.tab-btn.active::after {
    width: 100%;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.event-card {
    display: flex;
    background: var(--dark-alt);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    align-items: center;
    gap: 30px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.event-details p {
    color: var(--light-alt);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-details i {
    color: var(--primary);
    width: 20px;
}

/* ===== Equipment Section ===== */
.equipment {
    padding: 80px 0;
    background: var(--dark-alt);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gear-card {
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 30px 20px;
}

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

.gear-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.gear-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gear-card p {
    color: var(--light-alt);
}

@media (max-width: 768px) {
    .dj-hero h1 {
        font-size: 2.5rem;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-details p {
        justify-content: center;
    }
    
    .tracklist ol {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Hero ===== */
.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/contact-bg.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light);
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero h1 span {
    color: var(--primary);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: var(--dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info h2 span,
.contact-form h2 span {
    color: var(--primary);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--light-alt);
}

.booking-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--dark-alt);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: var(--dark-alt);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--dark-alt);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}