:root {
    --primary-color: #2C5530;
    --secondary-color: #8FBC8F;
    --accent-color: #4A7C59;
    --text-color: #2F4F4F;
    --hover-color: #E8F5E8;
    --bg-color: #FAFDFA;
    --card-bg: #FFFFFF;
    --nav-color: #F5F9F5;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-gradient: linear-gradient(135deg, #2C5530 0%, #4A7C59 100%);
    --footer-gradient: linear-gradient(135deg, #FFFFFF 0%, #E8F5E8 100%);
    --logo-bg: #2C5530;
    --logo-text: #FFFFFF;
    --logo-accent: #8FBC8F;
    --border-radius: 12px;
    --shadow-soft: 0 8px 32px rgba(44, 85, 48, 0.08);
    --shadow-hover: 0 12px 48px rgba(44, 85, 48, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', 'Times New Roman', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(143, 188, 143, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(44, 85, 48, 0.03) 0%, transparent 50%);
}

/* Top Banner */
.top-banner {
    background: var(--header-gradient);
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.gcs-new-styles-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.gcs-new-styles-logo:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.gcs-new-styles-logo-img {
    height: 70px;
    filter: brightness(0) invert(1);
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.nav-item {
    margin: 0.2rem 0;
}

.nav-link {
    color: var(--nav-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.7rem 1.2rem;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-link.active {
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-link i {
    margin-left: 8px;
    font-size: 0.85rem;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.language-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--nav-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-width: 140px;
}

.language-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.language-btn i {
    margin-left: 8px;
    font-size: 0.8rem;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    padding: 1rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.language-menu.show {
    display: grid;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.language-item {
    padding: 0;
}

.language-link {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.8rem;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    transition: var(--transition);
    font-weight: 500;
}

.language-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: var(--accent-color);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 600;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn:hover {
    background: var(--hover-color);
    color: var(--accent-color);
}

/* Main Content */
main {
    margin-top: 180px;
    padding: 3rem 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    font-family: 'Georgia', serif;
    position: relative;
}

h1::after {
    content: '❧';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    font-size: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    font-family: 'Georgia', serif;
}

h2::before, h2::after {
    content: '~';
    color: var(--secondary-color);
    margin: 0 1rem;
}

/* Gallery Grid */
.gcs-new-styles-gallery-grid {
    column-count: 4;
    gap: 15px;
}

.gcs-new-styles-gallery-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    margin-bottom: 15px;
    border: 1px solid rgba(143, 188, 143, 0.1);
    position: relative;
}

.gcs-new-styles-gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gcs-new-styles-gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gcs-new-styles-gallery-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gcs-new-styles-gallery-card:hover .gcs-new-styles-gallery-img {
    transform: scale(1.05);
}

.gcs-new-styles-gallery-info {
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(44, 85, 48, 0.9));
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.gcs-new-styles-gallery-card:hover .gcs-new-styles-gallery-info {
    transform: translateY(0);
}

.gcs-new-styles-gallery-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
    font-family: 'Georgia', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Tile Grid */
.gcs-new-styles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
    justify-content: center;
}

.gcs-new-styles-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.2rem 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    flex: 1 0 auto;
    text-align: center;
    border: 1px solid rgba(143, 188, 143, 0.2);
    min-width: 200px;
    position: relative;
    overflow: hidden;
	max-width: 400px;
}

.gcs-new-styles-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.gcs-new-styles-item:hover::before {
    transform: scaleX(1);
}

.gcs-new-styles-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gcs-new-styles-link {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    display: block;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    transition: var(--transition);
}

.gcs-new-styles-item:hover .gcs-new-styles-link {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--footer-gradient);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(143, 188, 143, 0.3);
}

.footer-container-gcs-new-styles {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.footer-links-col {
    min-width: 220px;
}

.footer-links-col h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.3rem 0;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

.copyright {
    text-align: center;
    margin: 3rem calc(-50vw + 50%) 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(143, 188, 143, 0.3);
    font-size: 0.9rem;
    color: var(--text-color);
    width: 100vw;
    background: rgba(248, 252, 248, 0.8);
    font-style: italic;
}

.copyright p {
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .gcs-new-styles-logo {
        margin-bottom: 0;
    }

    .main-nav {
        width: auto;
        justify-content: center;
    }

    .language-dropdown {
        position: static;
        transform: none;
        margin: 0;
    }

    main {
        margin-top: 140px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 140px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 2rem 5%;
        display: none;
        box-shadow: var(--shadow-hover);
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .main-nav.show {
        display: block;
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
    }

    .language-dropdown {
        position: static;
        margin: 1rem 0 0;
        width: 100%;
    }

    .language-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 1rem;
    }

    .footer-container-gcs-new-styles {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 800px) {
    .gcs-new-styles-gallery-grid {
        column-count: 3;
    }
}		
@media (max-width: 600px) {
    .gcs-new-styles-gallery-grid {
        column-count: 2;
    }
}
@media (max-width: 576px) {
    .gcs-new-styles-gallery-grid {
        column-count: 1;
    }
    .language-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

/* Additional Refinements */
.gcs-new-styles-info-section {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(143, 188, 143, 0.2);
    margin: 2rem 0;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-color);
    font-family: 'Georgia', serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--secondary-color);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}