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

:root {
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent: #2c2c2c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.gold {
    color: var(--gold);
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.9) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.nav-brand h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-tagline {
    font-size: 12px;
    color: var(--gold);
    margin-top: -5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.btn-cta-nav {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* Stats Section */
.stats-section {
    background: var(--dark-secondary);
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
}

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

.intro-card {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.intro-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.intro-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold);
}

.intro-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tipps Section */
.tipps-section {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.tipps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.tipp-card {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-tertiary) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.tipp-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.15);
}

.tipp-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    min-width: 80px;
}

.tipp-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.tipp-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.cta-banner h3 {
    font-size: 32px;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    color: var(--dark-secondary);
    margin-bottom: 30px;
}

.cta-banner .btn-cta {
    background: var(--dark-bg);
    color: var(--gold);
    border: 2px solid var(--dark-bg);
}

.cta-banner .btn-cta:hover {
    background: transparent;
    color: var(--dark-bg);
    border-color: var(--dark-bg);
}

/* Do's and Don'ts Section */
.dosdonts-section {
    padding: 100px 0;
}

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

.dos-title {
    font-size: 28px;
    color: #4ade80;
    margin-bottom: 30px;
    text-align: center;
}

.donts-title {
    font-size: 28px;
    color: #f87171;
    margin-bottom: 30px;
    text-align: center;
}

.dosdonts-card {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.dosdonts-card.dos {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.dosdonts-card.dos:hover {
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-5px);
}

.dosdonts-card.donts {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.1) 0%, rgba(248, 113, 113, 0.05) 100%);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.dosdonts-card.donts:hover {
    border-color: rgba(248, 113, 113, 0.4);
    transform: translateY(-5px);
}

.dosdonts-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold);
}

.dosdonts-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: var(--dark-secondary);
}

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

.location-card {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.location-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.8) 100%);
}

.luxury-club {
    background-image: url('data:image/svg+xml,<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"><rect fill="%23222" width="400" height="200"/><text x="50%" y="50%" text-anchor="middle" fill="%23d4af37" font-size="24" font-family="Arial">🥂 CLUB</text></svg>');
}

.luxury-hotel {
    background-image: url('data:image/svg+xml,<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"><rect fill="%23222" width="400" height="200"/><text x="50%" y="50%" text-anchor="middle" fill="%23d4af37" font-size="24" font-family="Arial">🏨 HOTEL</text></svg>');
}

.golf-club {
    background-image: url('data:image/svg+xml,<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"><rect fill="%23222" width="400" height="200"/><text x="50%" y="50%" text-anchor="middle" fill="%23d4af37" font-size="24" font-family="Arial">⛳ GOLF</text></svg>');
}

.art-gallery {
    background-image: url('data:image/svg+xml,<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"><rect fill="%23222" width="400" height="200"/><text x="50%" y="50%" text-anchor="middle" fill="%23d4af37" font-size="24" font-family="Arial">🎨 KUNST</text></svg>');
}

.yacht-club {
    background-image: url('data:image/svg+xml,<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"><rect fill="%23222" width="400" height="200"/><text x="50%" y="50%" text-anchor="middle" fill="%23d4af37" font-size="24" font-family="Arial">⛵ YACHT</text></svg>');
}

.business-events {
    background-image: url('data:image/svg+xml,<svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"><rect fill="%23222" width="400" height="200"/><text x="50%" y="50%" text-anchor="middle" fill="%23d4af37" font-size="24" font-family="Arial">💼 BUSINESS</text></svg>');
}

.location-content {
    padding: 30px;
}

.location-content h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 20px;
}

.location-content p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.location-content strong {
    color: var(--gold-light);
}

/* Success Stories */
.success-section {
    padding: 100px 0;
}

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

.success-card {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.success-quote {
    font-size: 80px;
    color: var(--gold);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.success-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.success-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.success-author strong {
    color: var(--gold);
    font-size: 18px;
}

.success-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.final-cta-section > p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.benefit {
    font-size: 16px;
    color: var(--text-primary);
    padding: 15px 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 40px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .tipp-card {
        flex-direction: column;
        padding: 30px 20px;
    }

    .tipp-number {
        min-width: auto;
    }

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

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

    .final-cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

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

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