
/* =========================================
   Global Variables & Reset
========================================= */
:root {
    --primary-color: #d4af37; /* Luxury Gold */
    --primary-hover: #b5952f;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-heading: 'Georgia', serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    --header-height: 70px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
    scroll-padding-top: var(--header-height); /* 
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark-bg);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* =========================================
   Buttons
========================================= */
.btn-primary, .btn-large, .btn-dark {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    white-space: nowrap; 
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover { background-color: var(--primary-hover); color: var(--white); }

.btn-large {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-large:hover { background-color: var(--primary-hover); color: var(--white); }

.btn-dark {
    background-color: var(--dark-bg);
    color: var(--primary-color);
}
.btn-dark:hover { background-color: #000; }

/* =========================================
   Header
========================================= */
.site-header {
    background-color: var(--dark-bg);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.logo {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
    flex-shrink: 0; 
}

.main-nav {
    flex-grow: 1;
    text-align: center;
}

.main-nav a {
    color: var(--white);
    margin: 0 15px;
    font-size: 0.95rem;
}

.main-nav a:hover { color: var(--primary-color); }

/* =========================================
   Hero Section
========================================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('images/sugar-daddy-Belfast.jpg') center/cover no-repeat;
    height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* =========================================
   Grid Layouts
========================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }

/* =========================================
   Sections General
========================================= */
section { padding: 80px 0; }
.section-subtitle { max-width: 600px; margin: 0 auto; color: var(--text-light); }
h2 { font-size: 2.2rem; margin-bottom: 20px; }

/* What Section */
.features-section { background-color: var(--light-bg); text-align: center;}
.card { background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.card img { border-radius: 50%; width: 100px; height: 100px; margin: 0 auto 15px auto; object-fit: cover;}

/* Split Layouts (Who & Security) */
.split-layout { display: flex; align-items: center; gap: 50px; }
.split-layout.reverse { flex-direction: row-reverse; }
.text-content { flex: 1; }
.image-content { flex: 1; }
.text-content ul { margin: 20px 0; padding-left: 20px; }
.text-content li { margin-bottom: 10px; }

/* Why Section */
.why-section { background-color: var(--dark-bg); color: var(--white); }
.why-section h2 { color: var(--primary-color); text-align: center; }
.info-box { background: rgba(255,255,255,0.05); padding: 30px; border-left: 3px solid var(--primary-color); }
.info-box h3 { color: var(--primary-color); }

/* Where Section */
.full-img { border-radius: 8px; margin: 30px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.location-card { text-align: left; padding: 20px; border: 1px solid #eaeaea; border-radius: 8px; }

/* Comparison Section */
.comparison-section { background-color: var(--light-bg); text-align: center;}
.table-responsive { 
    overflow-x: auto; 
    margin-top: 30px; 
    width: 100%; 
    display: block;
    -webkit-overflow-scrolling: touch; 
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background: #d4af37; 
    border-radius: 3px;
}
.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 600px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.compare-table th, .compare-table td { padding: 15px; border: 1px solid #eaeaea; text-align: center; }
.compare-table th { background-color: var(--dark-bg); color: var(--primary-color); font-family: var(--font-heading); font-size: 1.1rem;}
.compare-table td strong { color: var(--dark-bg); }

/* How It Works */
.how-it-works { background-color: var(--white); }
.step { text-align: center; }
.circle { width: 60px; height: 60px; line-height: 60px; background: var(--primary-color); color: var(--white); border-radius: 50%; font-size: 1.5rem; font-weight: bold; margin: 0 auto 20px auto; }

/* CTA Section */
.cta-section { background-color: var(--primary-color); padding: 60px 0; color: var(--dark-bg); }
.cta-section h2 { color: var(--dark-bg); }
.cta-section p { margin-bottom: 30px; font-size: 1.1rem; }

/* =========================================
   Footer
========================================= */
.site-footer { background-color: var(--dark-bg); color: var(--white); padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--primary-color); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #aaaaaa; }
.footer-col a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; color: #777; font-size: 0.9rem; }

/* =========================================
   Responsive Design (Tablet)
========================================= */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .main-nav a { margin: 0 8px; font-size: 0.85rem; }
}

/* =========================================
   Responsive Design (Mobile) - 
========================================= */
@media (max-width: 768px) {
    
    .site-header .container {
        justify-content: space-between;
    }
    
    .logo { font-size: 1.2rem; }
    
    .main-nav { display: none;  }
    
   
    .site-header .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero h1 { font-size: 2.2rem; }
    
    .grid-4, .grid-3 { grid-template-columns: 1fr; }
    
    .split-layout, .split-layout.reverse { flex-direction: column; text-align: center; }
    .text-content ul { text-align: left; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    section { padding: 50px 0; }
}