/*
 * 11:11 Secrets - Spiritual Numerology Website
 * Mystical purple and gold theme with cosmic design elements
 */

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

:root {
    /* Color Palette */
    --primary: #7E57C2;      /* Deep Purple */
    --primary-light: #9575CD; /* Medium Purple */
    --primary-dark: #5E35B1;  /* Dark Purple */
    --secondary: #FFD54F;     /* Gold */
    --secondary-light: #FFE082; /* Light Gold */
    --accent: #FF5252;        /* Accent Red */
    --dark: #2C2C54;          /* Dark Blue-Purple */
    --dark-secondary: #40407A; /* Medium Blue-Purple */
    --light: #FFFFFF;         /* White */
    --light-secondary: #F5F5F5; /* Light Gray */
    --text: #333333;          /* Main Text */
    --text-light: #777777;    /* Light Text */
    
    /* Typography */
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-spacing: 100px 0;
    --container-padding: 0 15px;
    
    /* Other Variables */
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --border: 1px solid rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

h1 span {
    color: var(--primary);
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 span {
    color: var(--primary);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.section-header h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--secondary);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

section {
    padding: var(--section-spacing);
    position: relative;
}

.highlight {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
    border-left: 3px solid var(--secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(126, 87, 194, 0.3);
}

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

.secondary-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 213, 79, 0.3);
}

.btn-nav {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-nav:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header and Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin-left: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

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

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

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

nav ul li a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover:not(.btn-nav) {
    color: var(--primary);
}

nav ul li a:hover:not(.btn-nav)::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--light);
    overflow: hidden;
    margin-top: 80px;
}

.cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    z-index: -2;
}

.cosmic-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FFFFFF" opacity="0.3"/></svg>');
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero h2 span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
    opacity: 0.5;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--light);
}

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

/* About Section */
.about {
    background-color: var(--light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(126, 87, 194, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 213, 79, 0.03) 0%, transparent 20%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    position: relative;
}

.number-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--light);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.number-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--secondary);
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.number-box h3 {
    color: var(--light);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.number-box p {
    color: var(--light-secondary);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(126, 87, 194, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.point p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Meanings Section */
.meanings {
    background-color: var(--light-secondary);
    position: relative;
    overflow: hidden;
}

.meanings::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 87, 194, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.meanings::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 213, 79, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.meanings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.meaning-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid transparent;
}

.meaning-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary);
}

.meaning-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--light);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(126, 87, 194, 0.3);
}

.meaning-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.meaning-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Numerology Section */
.numerology {
    background: linear-gradient(to bottom, var(--light) 0%, rgba(245, 245, 245, 0.5) 100%);
    position: relative;
}

.numerology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(126, 87, 194, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(255, 213, 79, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.numerology-content {
    position: relative;
    z-index: 1;
}

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

.num-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 3px solid var(--primary);
    height: 100%;
}

.num-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.num-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.num-card h3 {
    margin-bottom: 0;
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.num-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.numerology-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    position: relative;
}

.numerology-quote::before {
    content: '\201C';
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(126, 87, 194, 0.1);
    position: absolute;
    top: 0;
    left: 0;
}

.numerology-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    font-family: var(--heading-font);
    color: var(--primary-dark);
    line-height: 1.6;
}

.numerology-quote cite {
    display: block;
    color: var(--text-light);
    font-style: normal;
    font-size: 1rem;
    margin-top: 10px;
}

/* Resources Section */
.resources {
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><circle cx="150" cy="150" r="1" fill="%23FFFFFF" opacity="0.3"/></svg>');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 0;
}

.resources .section-header h2,
.resources .section-header p {
    color: var(--light);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.resource-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-column a {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--light);
    text-decoration: none;
    border-left: 3px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.resource-column a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.resource-column a:hover {
    color: var(--light);
    transform: translateY(-3px) translateX(3px);
    border-left-color: var(--secondary);
}

.resource-column a:hover::before {
    opacity: 0.2;
}

/* Sign Up Section */
.sign-up {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sign-up::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0L60 30L30 60L0 30Z" fill="%23FFFFFF" opacity="0.03"/></svg>');
    background-repeat: repeat;
    z-index: 0;
}

.sign-up-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sign-up h2 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.sign-up h2 span {
    color: var(--secondary);
}

.sign-up p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.sign-up-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.sign-up-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--body-font);
    border-radius: 50px 0 0 50px;
}

.sign-up-form button {
    padding: 0 30px;
    border: none;
    border-radius: 0 50px 50px 0;
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.sign-up-form button:hover {
    background-color: var(--secondary-light);
}

.privacy-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Section */
.contact {
    background-color: var(--light);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(126, 87, 194, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(255, 213, 79, 0.02) 0%, transparent 20%);
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-form {
    background-color: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: var(--body-font);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: block;
    width: calc(50% - 8px);
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--light);
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.info-card a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

.cosmic-wisdom {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: auto;
}

.cosmic-wisdom blockquote {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-dark);
    position: relative;
    padding: 0 20px;
    line-height: 1.6;
}

.cosmic-wisdom blockquote::before {
    content: '\201C';
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(126, 87, 194, 0.2);
    position: absolute;
    left: -10px;
    top: -20px;
}

.cosmic-wisdom blockquote p {
    color: var(--primary-dark);
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><circle cx="150" cy="150" r="1" fill="%23FFFFFF" opacity="0.2"/></svg>');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo p {
    margin: 15px 0 0;
    color: var(--light);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo p span {
    color: var(--secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-mini {
    display: flex;
    gap: 15px;
}

.social-mini a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-mini a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-box {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        height: 24px;
        width: 30px;
        position: relative;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        height: 2px;
        width: 30px;
        background-color: var(--primary);
        position: absolute;
        transition: var(--transition);
    }
    
    .nav-toggle-label span {
        top: 11px;
    }
    
    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        content: '';
        top: 8px;
    }
    
    .nav-toggle:checked + .nav-toggle-label span {
        background-color: transparent;
    }
    
    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--light);
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle:checked ~ nav {
        height: auto;
        padding: 20px 0;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 80%;
    }
    
    .sign-up-form {
        flex-direction: column;
        border-radius: var(--radius);
    }
    
    .sign-up-form input {
        border-radius: var(--radius) var(--radius) 0 0;
        text-align: center;
    }
    
    .sign-up-form button {
        border-radius: 0 0 var(--radius) var(--radius);
        width: 100%;
        padding: 15px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .meanings-grid,
    .numerology-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
