/*
Theme Name: Club Diplomatico - Luxury Theme
Theme URI: https://www.clubdiplomatico.com
Author: Luxury Design Agency
Author URI: https://luxurydesign.agency
Description: Tema WordPress de lujo para Club Diplomatico - Diseño ultra-premium para instituciones diplomaticas de elite.
Version: 2.0.0
License: GPL v2 or later
Text Domain: club-diplomatico
*/

/* ============================================
   CLUB DIPLOMATICO - LUXURY THEME
   ============================================ */

:root {
    /* Primary Colors - Diplomatic Navy & Gold */
    --cd-navy: #0a1628;
    --cd-navy-light: #1a2a4a;
    --cd-navy-dark: #050d18;
    --cd-gold: #c9a962;
    --cd-gold-light: #e8d5a3;
    --cd-gold-dark: #9a7b3d;
    
    /* Neutral Colors */
    --cd-white: #ffffff;
    --cd-cream: #f8f6f1;
    --cd-gray-light: #f5f5f5;
    --cd-gray: #888888;
    --cd-gray-dark: #333333;
    --cd-black: #000000;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-nav: 'Montserrat', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--cd-gray-dark);
    background-color: var(--cd-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--cd-navy);
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 20px;
}

a {
    color: var(--cd-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--cd-gold-dark);
}

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

/* Container */
.cd-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.cd-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.cd-header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.cd-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.cd-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cd-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.cd-header.scrolled .cd-logo img {
    height: 55px;
}

.cd-logo-text {
    color: var(--cd-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.cd-logo-text span {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cd-gold);
    margin-top: 3px;
}

/* Navigation */
.cd-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.cd-nav-menu a {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cd-white);
    position: relative;
    padding: 10px 0;
}

.cd-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cd-gold);
    transition: width 0.3s ease;
}

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

.cd-nav-menu a:hover {
    color: var(--cd-gold);
}

/* Dropdown */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cd-navy);
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    border-top: 2px solid var(--cd-gold);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {
    display: block;
    padding: 10px 25px;
    font-size: 0.75rem;
}

/* Mobile Menu Toggle */
.cd-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.cd-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cd-white);
    transition: all 0.3s ease;
}

.cd-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.cd-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.cd-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.cd-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--cd-navy);
    padding: 100px 40px;
    transition: right 0.4s ease;
    z-index: 999;
}

.cd-mobile-menu.active {
    right: 0;
}

.cd-mobile-nav-menu {
    list-style: none;
}

.cd-mobile-nav-menu li {
    margin-bottom: 20px;
}

.cd-mobile-nav-menu a {
    color: var(--cd-white);
    font-family: var(--font-nav);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.cd-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cd-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.5));
}

.cd-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.cd-hero-subtitle {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--cd-gold);
    margin-bottom: 25px;
    display: block;
}

.cd-hero-title {
    font-size: 4.5rem;
    color: var(--cd-white);
    margin-bottom: 25px;
}

.cd-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cd-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.cd-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    cursor: pointer;
}

.cd-scroll-indicator span {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.cd-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--cd-gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   BUTTONS
   ============================================ */
.cd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-nav);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cd-btn-primary {
    background: var(--cd-gold);
    color: var(--cd-navy);
}

.cd-btn-primary:hover {
    background: var(--cd-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.cd-btn-outline {
    background: transparent;
    color: var(--cd-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cd-btn-outline:hover {
    background: var(--cd-white);
    color: var(--cd-navy);
    border-color: var(--cd-white);
}

.cd-btn-navy {
    background: var(--cd-navy);
    color: var(--cd-white);
}

.cd-btn-navy:hover {
    background: var(--cd-navy-light);
    transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */
.cd-section {
    padding: var(--section-padding) 0;
}

.cd-section-navy {
    background: var(--cd-navy);
    color: var(--cd-white);
}

.cd-section-navy h1,
.cd-section-navy h2,
.cd-section-navy h3,
.cd-section-navy h4 {
    color: var(--cd-white);
}

.cd-section-cream {
    background: var(--cd-cream);
}

.cd-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cd-section-label {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--cd-gold);
    margin-bottom: 15px;
    display: block;
}

.cd-section-title {
    margin-bottom: 20px;
}

.cd-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--cd-gold);
    margin: 25px auto 0;
}

.cd-section-subtitle {
    font-size: 1.1rem;
    color: var(--cd-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.cd-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cd-about-image {
    position: relative;
}

.cd-about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.cd-about-image-frame {
    position: absolute;
    top: 25px;
    left: 25px;
    right: -25px;
    bottom: -25px;
    border: 2px solid var(--cd-gold);
    z-index: -1;
}

.cd-about-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--cd-navy);
    border-left: 3px solid var(--cd-gold);
    padding-left: 25px;
    margin: 30px 0;
}

.cd-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cd-stat-item {
    text-align: center;
}

.cd-stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--cd-gold);
    display: block;
    line-height: 1;
}

.cd-stat-label {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cd-gray);
    margin-top: 8px;
}

/* ============================================
   EVENTS
   ============================================ */
.cd-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cd-event-card {
    background: var(--cd-white);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.cd-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.cd-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.cd-event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--cd-navy);
    color: var(--cd-white);
    padding: 12px 18px;
    text-align: center;
    min-width: 60px;
}

.cd-event-date-day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: block;
    line-height: 1;
}

.cd-event-date-month {
    font-family: var(--font-nav);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cd-event-content {
    padding: 25px;
}

.cd-event-category {
    font-family: var(--font-nav);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cd-gold);
    margin-bottom: 12px;
    display: block;
}

.cd-event-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cd-event-excerpt {
    font-size: 0.95rem;
    color: var(--cd-gray);
    margin-bottom: 20px;
}

.cd-event-link {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cd-navy);
}

.cd-event-link:hover {
    color: var(--cd-gold);
}

/* ============================================
   GALLERY
   ============================================ */
.cd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cd-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.cd-gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.cd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.cd-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cd-gallery-item:hover .cd-gallery-overlay {
    opacity: 1;
}

.cd-gallery-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--cd-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cd-gold);
    font-size: 1.2rem;
}

/* ============================================
   MAGAZINE
   ============================================ */
.cd-magazine-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cd-magazine-cover {
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cd-magazine-cover img {
    width: 100%;
    height: auto;
}

.cd-magazine-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cd-magazine-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cd-magazine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cd-magazine-item {
    text-align: center;
    transition: transform 0.4s ease;
}

.cd-magazine-item:hover {
    transform: translateY(-5px);
}

.cd-magazine-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ============================================
   NETWORKING
   ============================================ */
.cd-networking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cd-networking-card {
    background: var(--cd-white);
    padding: 50px 35px;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.2);
    transition: all 0.4s ease;
}

.cd-networking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--cd-gold);
}

.cd-networking-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border: 2px solid var(--cd-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--cd-gold);
}

.cd-networking-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* ============================================
   VIDEOS
   ============================================ */
.cd-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cd-video-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.cd-video-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cd-video-item:hover img {
    transform: scale(1.05);
}

.cd-video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.cd-video-item:hover .cd-video-play {
    background: rgba(10, 22, 40, 0.7);
}

.cd-video-play-btn {
    width: 70px;
    height: 70px;
    border: 3px solid var(--cd-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cd-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.cd-video-item:hover .cd-video-play-btn {
    border-color: var(--cd-gold);
    color: var(--cd-gold);
    transform: scale(1.1);
}

.cd-video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
}

.cd-video-title h4 {
    color: var(--cd-white);
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.cd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cd-contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cd-contact-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--cd-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cd-gold);
    font-size: 1.1rem;
}

.cd-contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cd-contact-info-content p {
    color: var(--cd-gray);
    margin: 0;
}

.cd-contact-form {
    background: var(--cd-white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.cd-form-group label {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cd-gray);
    margin-bottom: 8px;
}

.cd-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cd-gray-dark);
    background: transparent;
    transition: border-color 0.3s ease;
}

.cd-form-control:focus {
    outline: none;
    border-color: var(--cd-gold);
}

textarea.cd-form-control {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   ACTIVIDADES (Survey)
   ============================================ */
.cd-survey-form {
    max-width: 800px;
    margin: 0 auto;
}

.cd-survey-question {
    background: var(--cd-white);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cd-survey-question h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cd-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cd-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--cd-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.cd-footer {
    background: var(--cd-navy);
    color: var(--cd-white);
    padding: 80px 0 0;
}

.cd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.cd-footer-brand h3 {
    color: var(--cd-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cd-footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

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

.cd-footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cd-white);
    transition: all 0.3s ease;
}

.cd-footer-social a:hover {
    background: var(--cd-gold);
    border-color: var(--cd-gold);
    color: var(--cd-navy);
}

.cd-footer-column h4 {
    color: var(--cd-white);
    font-size: 1rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

.cd-footer-menu {
    list-style: none;
}

.cd-footer-menu li {
    margin-bottom: 12px;
}

.cd-footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.cd-footer-menu a:hover {
    color: var(--cd-gold);
    padding-left: 8px;
}

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

.cd-footer-copyright {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.cd-page-header {
    background: var(--cd-navy);
    padding: 180px 0 80px;
    text-align: center;
}

.cd-page-header h1 {
    color: var(--cd-white);
    font-size: 3.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.cd-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cd-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .cd-about-grid,
    .cd-magazine-featured,
    .cd-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .cd-events-grid,
    .cd-networking-grid,
    .cd-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cd-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cd-magazine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cd-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cd-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cd-nav-menu {
        display: none;
    }
    
    .cd-menu-toggle {
        display: flex;
    }
    
    .cd-events-grid,
    .cd-networking-grid,
    .cd-videos-grid,
    .cd-gallery-grid,
    .cd-magazine-grid,
    .cd-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cd-gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .cd-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cd-hero-title {
        font-size: 2.5rem;
    }
    
    .cd-hero-cta {
        flex-direction: column;
    }
    
    .cd-btn {
        width: 100%;
    }
    
    .cd-checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .cd-section {
        padding: 60px 0;
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--cd-gold);
    color: var(--cd-navy);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}
