/* Koenig Editor Width Classes */
.kg-width-wide {
    position: relative;
    width: 85vw;
    min-width: 100%;
    margin: 0 calc(50% - 50vw);
    transform: translateX(calc(50vw - 50%));
}

.kg-width-full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.kg-width-full img {
    width: 100vw;
}

/* Base styles */
:root {
    --primary-color: #6d4c41;
    --secondary-color: #8d6e63;
    --accent-color: #d7ccc8;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --dark-bg: rgb(233, 150, 122);
    --violet-background: #705192;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Image */
.header-image {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: url('/assets/images/charlottemay.jpeg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 150px;
    align-items: flex-start;
    position: relative;
    text-align: left;
}

.header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.vedic-title {
    font-family: 'Dancing Script', cursive, serif;
    font-size: 6rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
    margin: 50px 0 0.5rem 20%;
    padding: 0 2rem;
    line-height: 1.2;
    align-self: flex-start;
}

.vedic-subtitle {
    font-family: 'Dancing Script', cursive, serif;
    font-size: 4rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
    margin: 0 0 0.5rem 20%;
    padding: 0 2rem;
    line-height: 1.2;
    align-self: flex-start;
}

.header-description {
    font-size: 1rem;
    color: #ffffff;
    max-width: 700px;
    position: relative;
    margin: 0px 0 0.5rem 0;
    padding: 0 2rem;
    align-self: flex-start;
    z-index: 1;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    margin-left: 18%;
}

/* Navigation */
header {
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.main-nav {
    width: 100%;
    padding: 1.5rem 0;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    align-items: center;
    height: 80px; /* Initial height */
}

@media (min-width: 769px) and (max-width: 1000px) {
    .vedic-title {
        margin-left: 5%;
    }
    .vedic-subtitle {
        margin-left: 5%;
    }
    
    .header-description {
        margin-left: 5%;
    }
    
}

@media (min-width: 1001px) and (max-width: 1200px) {
    .vedic-title {
        margin-left: 10%;
    }
    .vedic-subtitle {
        margin-left: 10%;
    }
    
    .header-description {
        margin-left: 10%;
    }
    
}

/* Desktop styles */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        display: flex !important; /* Force show on desktop */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row;
    }
    
    .nav-links li {
        opacity: 1 !important;
        transform: none !important;
        margin: 0 0.5rem !important;
    }
    
    .nav-links a {
        font-size: 1.1rem !important;
        padding: 0.5rem 1rem !important;
    }

    .main-nav.scrolled {
        background-color: var(--violet-background);
        padding: 0.15rem 0;
        height: 50px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .main-nav {
        background: none;
    }
    
    .main-nav .nav-links {
        display: none;
    }
    
    .main-nav .nav-links.active {
        display: flex;
    }
}

.main-nav.scrolled .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
}

.main-nav.scrolled .logo {
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0 1rem;
    list-style: none;
    transition: transform 0.3s ease-in-out;
}

.nav-links li {
    margin: 0.5rem 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.9);
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 1002;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Active state for hamburger */
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .vedic-title {
        margin: 0 auto;
        text-align: center;
    }

    .vedic-subtitle {
        margin: 0 auto;
        text-align: center;
    }
    
    .header-description {
        margin: 0 auto;
        text-align: center;
    }

    .main-nav.scrolled {
        background-color: rgba(0, 0, 0, 0);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        z-index: 1001;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        display: none; /* Start hidden */
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
        background-color: var(--violet-background) !important;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease-in-out;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered animation for menu items */
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-links a {
        font-size: 1.8rem;
        padding: 1rem 2rem;
        transition: color 0.3s ease;
    }
    
    .nav-links a:hover {
        color: var(--accent-color);
        background: transparent;
    }

    .nav-links li {
        margin: 1rem 0;
    }
}

.nav-links.active {
    display: block;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Buttons */
.cta-button, .submit-btn {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.post-full-content {
    padding: 0px 0px 0px 0px !important;}

/* Sections */
section {
    padding: 5rem 5%;
    position: relative;
    transition: all 0.4s ease-in-out;
    transform-origin: top center;
    transform: scale(0.98);
    opacity: 0.9;
    margin: 1rem 0;
    border-radius: 8px;
}

/* Ensure sections are always clear */
.contact,
.about,
section {
    filter: none !important;
    opacity: 1 !important;
}

section:focus,
section:focus-within,
section:hover,
section:target {
    transform: scale(1);
    opacity: 1;
    filter: none;
    z-index: 1;
}

/* Ensure content is still readable when section is not in focus */
section * {
    transition: all 0.3s ease-in-out;
}

.no-space {
    margin: 0;
    padding: 0;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin: 0.5rem;
    display: none;
}

.about-text p:nth-child(2) {
    display: block !important;
}

.about-text p:nth-child(3) {
    display: block !important;
}

.show-about-text {
    display: block !important;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hide image on small screens */
@media (max-width: 767px) {
    .about-image {
        display: none;
    }
    
    .about-text {
        width: 100%;
        text-align: center;
    }
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Services */
.services {
    background: url('/assets/images/pionees.jpeg') no-repeat center center/cover;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    color: white;
    width: 100vw;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.services h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.services > * {
    position: relative;
    z-index: 2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto 0;
    max-width: 1200px;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Vedic Intro Section */
.vedic-intro {
    background: url('/assets/images/nigrin.jpg') no-repeat bottom center/cover;
    color: white;
    padding: 6rem 0;
    position: relative;
    width: 100vw;
    margin: 2rem 0 2rem 0;
}

.vedic-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
}

.vedic-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vedic-content h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vedic-text {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    /* Removed blur effect */
}

.vedic-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.vedic-text p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    position: relative;
}

.about-text p.expanded {
    max-height: 2000px; /* Adjust based on content */
    opacity: 1;
    visibility: visible;
    display: block !important;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out 0.1s, visibility 0.4s ease-in-out 0.1s;
}

.btn {
    background-color: var(--fall-leaf);
    color: white !important;
    border: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.about-text:not(.expanded) .read-more-btn i {
    transform: rotate(180deg);
}

.about-image {
    flex: 0 0 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.sun-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sun-image:hover {
    transform: scale(1.03);
}

.booking-info {
    background-color: #f9f5f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

.booking-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.booking-info.contact p {
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.7;
}

/* Fall leaf red color variables */
:root {
    --fall-leaf: #b7410e; /* Rich, warm fall leaf red */
    --fall-leaf-hover: #9a370c; /* Slightly darker for hover */
}
/*
.btn {
    display: inline-block;
    background-color: var(--fall-leaf);
    color: var(--primary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
*/

/* Specific style for the email button */
#showFormBtn {
    background-color: var(--fall-leaf);
    color: white;
    margin-top: 1rem;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#showFormBtn:hover {
    background-color: var(--fall-leaf-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Default button hover */
.btn:not(#showFormBtn):hover {
    background-color: #e0c8b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact {
    background-color: var(--white) !important; /* Force white background */
    padding: 2rem 5% !important;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Override section focus styles for contact section */
.contact:focus,
.contact:focus-within,
.contact:hover,
.contact:target {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.contact p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.contact .btn {
    margin-top: 1.5rem;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.contact .btn:hover {
    background-color: #5a3e34;
    transform: translateY(-2px);
}

.contact-form-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    animation: fadeIn 0.3s ease-out;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(109, 76, 65, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
}

.btn-submit,
.btn-cancel {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    width: auto;
    min-width: 300px;
    text-align: center;
    border: none;
}

/* Desktop styles */
@media (min-width: 768px) {
    .form-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-submit,
    .btn-cancel {
        width: auto;
        min-width: 200px !important;
    }
}

.btn-submit {
    background-color: var(--fall-leaf) !important;
    color: white;
    border: none;
}

.btn-submit:hover {
    background-color: var(--fall-leaf-hover) !important;
    transform: translateY(-2px);
}

.btn-cancel {
    background-color: #9e9e9e !important; /* Medium grey */
    color: white;
    border: 1px solid #757575;
    font-weight: 500;
}

.btn-cancel:hover {
    background-color: #757575;
    transform: translateY(-2px);
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease-out;
}

.thank-you-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.compact-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

input[type="email"],
textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(109, 76, 65, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

::placeholder {
    color: #999;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}

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

.hero, section {
    animation: fadeIn 0.8s ease-out;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Section focus effects */
/*
.services:target,
.vedic-intro:target {
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services:target .service-card,
.vedic-intro:target .vedic-content {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
*/
section:focus,
section:focus-within,
section:hover,
section:target {
    /* Removed transform and opacity */
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}

/* Ensure content is still readable when section is not in focus */
section * {
    transition: all 0.3s ease-in-out;
}

/* Footer */
footer {
    background: url('/assets/images/orbs.jpeg') no-repeat bottom center/cover;
    color: var(--white);
    padding: 4rem 5% 3rem;
    position: relative;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1); /* Lighter overlay */
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-branding {
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2;
    text-align: left;
}

.footer-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #FFD700;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.3); /* Lighter background */
    border-radius: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Removed blur effect */
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.social-links i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}

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

.hero, section {
    animation: fadeIn 0.8s ease-out;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.post-full-title {
    font-size: 2rem;
    z-index: 1;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Dancing Script', cursive, serif;
    font-size: 6rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.post-full-content {
    min-height: 400px;
    padding: 6rem 0;
    position: relative;
    width: 100vw;
    margin: 2rem 0 2rem 0;
    
}

.post-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 3rem;
    margin: 0rem auto;
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 8px;
}

.post-content p {
    margin: 1rem 1rem;
}