/* --- Global Resets & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Background Image --- */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('gcc.jpeg') center/cover no-repeat;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoom 20s linear infinite alternate alternate-reverse;
}

@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}

/* Sophisticated gradient overlay */
.bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 40%, 
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* --- Main Layout Container --- */
.ui-container {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    position: relative;
    width: 85%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Top Header (Logo Left, Menu Right) --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.brand-logo-icon {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.sub-brand {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 2px;
}

.menu-controls {
    display: flex;
    align-items: center;
}

.menu-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* --- Main Typography --- */
.hero-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    max-width: 900px;
}

/* --- Bottom Bar --- */
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
}

/* Updated Fancy Quote/Motto */
.fancy-quote {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e0e0e0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    white-space: nowrap; 
}

.bottom-right {
    display: flex;
    gap: 50px;
}

.info-block {
    display: flex;
    flex-direction: column;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.info-block .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b3b3b3;
    margin-bottom: 4px;
}

.info-block .value {
    font-size: 1.05rem;
    font-weight: 500;
}

/* --- Fullscreen Contact Menu --- */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-header {
    position: absolute;
    top: 50px;
    right: 50px;
}

.close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.menu-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.menu-content .subtitle {
    font-size: 1.15rem;
    color: #a0a0a0;
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    text-align: left;
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 8px;
}

.contact-value, .contact-link {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 400;
}

.contact-link {
    text-decoration: none;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- Animations --- */
.fade-in-down {
    animation: fadeInDown 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 4.5rem; }
    .menu-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .content-wrapper { width: 90%; height: 90%; }
    .hero-text h1 { font-size: 3.2rem; }
    
    .top-bar { 
        flex-direction: row; 
        justify-content: space-between;
    }
    
    .bottom-bar { flex-direction: column; align-items: flex-start; gap: 30px; }
    .bottom-right { gap: 30px; }
    .fancy-quote { white-space: normal; line-height: 1.5; } 
    
    .contact-grid { 
        grid-template-columns: 1fr; 
        padding: 30px;
        gap: 30px;
    }
    .menu-title { font-size: 2.2rem; }
    .menu-header { top: 30px; right: 30px; }
    .brand-logo-icon { height: 32px; }
}