/*
Theme Name: Twenty Twenty-Four
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfour
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* General Reset */
html, body {
    margin: 0;
    padding: 0;
}

/* General Styles */
body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #FFF9F0; /* Cream background */
    color: #000000; /* Default text color */
}

/* Header Styles */
.site-header {
    background-color: #D9C3B3; /* Warm Clay background */
    border-bottom: 2px solid #808080; /* Full-width gray border */
    padding: 15px 0;
    z-index: 5;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* Footer Styles */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-divider {
    height: 2px;
    width: 100%;
    background-color: #F0E4D7; /* Beige */
    margin: 20px 0;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .header-container, .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .header-logo {
        max-height: 50px;
    }
}

/* Hide Titles on Homepage */
.home h1,
.home .page-title {
    display: none;
}

/* Frequent Colors */
:root {
    --beige: #F0E4D7;
    --warm-clay: #D9C3B3;
    --coral: #FF8E6E;
}

/* Utility Classes for Colors */
.bg-beige {
    background-color: var(--beige);
}
.bg-warm-clay {
    background-color: var(--warm-clay);
}
.bg-coral {
    background-color: var(--coral);
}

.text-beige {
    color: var(--beige);
}
.text-warm-clay {
    color: var(--warm-clay);
}
.text-coral {
    color: var(--coral);
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.col {
    flex: 1;
    padding: 10px;
}

/* Button Styling */
.button {
    background-color: var(--coral);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--warm-clay);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: #000000;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Elementor Overrides */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #000000;
}

/* Footer Base Styles */
footer {
    background-color: #FFF9F0; /* Cream background */
    padding: 30px 20px;
    font-family: 'Cormorant Garamond', serif;
    color: #808080; /* Neutral gray */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Section */
.footer-logo img {
    width: 120px;
    height: auto;
    filter: grayscale(100%);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 16px;
    color: #808080;
    font-style: italic;
    margin: 0;
}

/* Social Icons Section */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Divider Line */
.footer-divider {
    height: 2px;
    width: 100%;
    background-color: #F0E4D7; /* Beige */
    margin: 20px 0;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #808080;
}

.footer-bottom a {
    color: #808080;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: #FF8E6E; /* Coral hover effect */
}

/* Site Credit */
.site-credit {
    margin-top: 5px;
    font-size: 14px;
    font-style: italic;
    color: #808080;
}

.site-credit a {
    color: #808080;
    text-decoration: none;
}

.site-credit a:hover {
    color: #FF8E6E; /* Coral hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .social-icons {
        gap: 10px;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .header-logo {
        max-height: 50px; /* Adjust logo size for smaller screens */
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}