/*
Theme Name: Reddy Marriages
Template: astra
Version: 1.0
*/

```css
/* Global */
body {
    font-family: Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #FCFCFC;
}

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

section {
    padding: 60px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(135deg, #7A1F2B, #9B2735);
    color: white;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #D4A017;
    color: #7A1F2B;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/* Feature Cards */
.features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    background: white;
    width: 300px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
    text-align: center;
}

/* Profile Cards */
.profile-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-card {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
    text-align: center;
}

.profile-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: #7A1F2B;
    margin-bottom: 40px;
}


h1,h2,h3,h4 {
    font-family: Poppins, sans-serif;
}

.primary-color {
    color: #7A1F2B;
}

.gold {
    color: #D4A017;
}


.custom-header {
    background: #7A1F2B;
    padding: 15px 0;
}

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

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    max-height: 50px;
    width: auto;
}

.brand h1 {
    margin: 0;
    color: #D4A017;
    font-size: 24px;
}

.brand span {
    display: block;
    font-size: 12px;
    color: #ffffff;
}

.custom-header {
    background: #7A1F2B;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}


.main-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.main-nav a:hover {
    color: #D4A017;
}

#content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}