/* Top Info Bar (Global) */
.top-info-bar {
    background-color: var(--topbar-bg);
    color: #ffffff !important;
    padding: 6px 0;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.separator {
    opacity: 0.5;
}

.top-social-icon {
    color: white;
    font-size: 1.1em;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.top-social-icon:hover {
    opacity: 0.8;
}

/* Base Styles: Resets, Typography, Header, Footer */

body {
    font-family: var(--body-font) !important;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font) !important;
    color: var(--heading-color);
    margin-top: 0;
    font-weight: 700;
}

/* Header Styles */
.main-header {
    background: var(--navbar-bg);
    padding: 0.8em 20px;
    /* Reduced padding from 1.5em to 0.8em */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header .logo h1 {
    font-family: var(--logo-font) !important;
    font-size: 3em;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    text-shadow: none;
    transform: translateY(-5px);
}

.main-header .logo {
    text-decoration: none;
}

.main-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-header nav ul li a {
    color: var(--text-color);
    /* Dark text on white navbar */
    text-decoration: none;
    font-family: var(--body-font) !important;
    font-weight: 600;
    font-size: 0.9em;
    /* Reduced from 1em */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-shadow: none;
}

.main-header nav ul li a:hover {
    color: var(--primary-color);
}

/* Navbar Social Icons */
.nav-icon {
    font-size: 1.2em !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: var(--text-color) !important;
    border: 1px solid transparent;
}

.nav-icon:hover {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.nav-icon.instagram:hover,
.nav-icon.whatsapp:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    border-color: transparent;
}

main {
    flex: 1;
    padding: 60px 20px;
}

/* Footer Styles */
.main-footer {
    background-color: var(--bg-alt);
    color: var(--text-color);
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid #eee;
    font-family: var(--body-font);
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Wreath & Logo */
.footer-logo {
    position: relative;
    width: 280px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.footer-wreath {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.footer-title {
    position: relative;
    z-index: 1;
    font-family: var(--logo-font) !important;
    font-size: 3.2em;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 1px 1px 0 #fff;
    /* Fine-tune vertical alignment for Alex Brush font */
    transform: translateY(-5px);
    white-space: nowrap;
}

/* Description */
.footer-description p {
    font-size: 0.95em;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--primary-color);
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
}

/* Contact Info */
.footer-contact-info p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #666;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.8em;
    color: #aaa;
}

/* Buttons */
.whatsapp-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}

.whatsapp-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

/* Messages */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .header-content {
        flex-direction: column;
        gap: 20px;
    }
}