/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

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

/* Typography */
h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

/* Header styles */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    color: #333;
    font-weight: 700;
}

.logo h1 {
    background: linear-gradient(135deg, #333 0%, #777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #333;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #333;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Button styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero section */
.hero {
    height: 100vh;
    background-image: url('/Images/Matchmaking\ Couples\'\ herapy.png');
    background-size: cover;
    background-position: center;
    color: #333;
    position: relative;
    overflow: hidden;
}

/* Removed white overlay as requested */

.hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 50%;
    animation: fadeIn 1s ease-in-out;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #222 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-in-out;
}

.hero-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    stroke: #333;
    stroke-width: 1.5;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    nav {
        display: none;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 30px;
    }
    
    p {
        font-size: 16px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

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

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