/* Basic Reset, Body, html, a, ul styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* Remove scroll-snap, hide overflow */
body {
    font-family: sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow: hidden; /* Prevent scrollbars */
}
/* Remove scroll-snap */
a { color: #ffffff; text-decoration: none; }
ul { list-style: none; }

/* Header styles */
.site-header { 
    display: grid; 
    grid-template-columns: 1fr auto 1fr; 
    align-items: center; 
    padding: 15px 30px;  
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0; 
    background-color: #000000; /* Changed from rgba(0, 0, 0, 0.8) to solid black */
    z-index: 1000; 
}
.main-nav ul { 
    display: flex; 
    align-items: center; 
}
.main-nav.left-nav ul { 
    justify-content: flex-start; 
}
.main-nav.right-nav ul { 
    justify-content: flex-end; 
}
.main-nav li { 
    margin: 0 10px; 
}
.main-nav a { 
    font-size: 0.9em; 
    letter-spacing: 1px; 
    transition: color 0.3s ease; 
    white-space: nowrap; /* Prevent text wrapping */
}
.main-nav a:hover { 
    color: #cccccc; 
}
.main-nav a.active { 
    font-weight: bold; 
    color: #dddddd; 
}
.site-logo { 
    grid-column: 2 / 3; 
    text-align: center; 
    font-weight: bold; 
    font-size: 1.5em; 
}
.site-logo img {
    max-width: 100%;
    height: auto;
}
.site-logo a { 
    color: #ffffff; 
}

/* Page Container */
.page-container {
    position: relative; /* Context for absolute positioning */
    height: 100vh;
    width: 100%;
}

/* Full Page Section Base Styling - Updated for Overlay */
.full-page-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px 20px 20px; /* Reduced top padding from 80px to 40px */
    /* Default transition for sections that might move */
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Lifestyle Section (Base Layer) */
#lifestyle {
    background-color: #000; /* Ensure it has a background */
    z-index: 1; /* Lower layer */
    /* It stays visible, no transform needed initially */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out;
}

/* Design Section (Overlay Layer) */
#design {
    background-color: #000; /* Ensure it has a background */
    z-index: 2; /* Higher layer */
    transform: translateY(100%); /* Start below viewport */
    opacity: 0; /* Start hidden */
    visibility: hidden; /* Start hidden */
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Class to make the Design section visible */
#design.is-visible {
    transform: translateY(0); /* Slide into view */
    opacity: 1;
    visibility: visible;
}

/* Hero Section Content Styling */
.hero h1 { 
    font-size: clamp(2.5rem, 7vw, 3.5rem); 
    letter-spacing: 1px; 
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.hero p { 
    font-size: clamp(1rem, 3vw, 1.5rem);
    max-width: 80%;
    margin: 0 auto 40px;
    color: #cccccc;
    padding: 0 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Scroll/Action Indicator Styling */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    text-align: center;
    font-size: 36px;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
}
.scroll-indicator a { 
    color: #fff; 
    display: block; /* Ensure the link is displayed as a block */
}

/* Bounce animation for both arrows */
#showDesignArrow span,
#hideDesignArrow span { 
    animation: bounce 2s infinite; 
    display: inline-block;
    opacity: 1; /* Ensure full opacity */
    font-size: 36px;
}

/* Up arrow specific style */
.scroll-indicator.up-arrow {
    bottom: auto; /* Remove bottom */
    top: 90px; /* Position near the top of the design section */
    font-size: 36px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-15px); }
}

/* Reversed bounce animation for up arrow */
@keyframes bounce-up {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* Lifestyle Section transition improvements */
#lifestyle {
    background-color: #000; /* Ensure it has a background */
    z-index: 1; /* Lower layer */
    /* It stays visible, no transform needed initially */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out;
}

/* Design Section transition improvements */
#design {
    background-color: #000; /* Ensure it has a background */
    z-index: 2; /* Higher layer */
    transform: translateY(100%); /* Start below viewport */
    opacity: 0; /* Start hidden */
    visibility: hidden; /* Start hidden */
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Class to make the Design section visible - smoother transition */
#design.is-visible {
    transform: translateY(0); /* Slide into view */
    opacity: 1;
    visibility: visible;
}

/* Add some animation when lifestyle becomes visible again */
#lifestyle.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

/* Design Section Content Styling */
.design-section h2 { 
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 30px; 
    font-weight: normal; 
    letter-spacing: 1px; 
    width: 100%; 
    padding-top: 20px; 
}
.design-section .image-container { 
    display: flex; 
    width: 100%; 
    height: 70%; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.design-section .image-half { 
    flex: 1; 
    overflow: hidden; 
    margin: 0 5px; 
}
.design-section .image-half img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

/* Wrapper for the image link - acts as positioning context */
.image-link-wrapper {
  position: relative; /* Needed for absolute positioning of overlay/title */
  display: block; /* Make it block-level */
  overflow: hidden; /* Hide anything that goes outside */
  background-color: #000; /* Background while image loads */
  height: 100%;
}

/* Tinted overlay using ::before pseudo-element */
.image-link-wrapper::before {
  content: ''; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black tint */
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease-in-out; /* Smooth fade transition */
  z-index: 1; /* Ensure tint is above the image */
}

/* Styling for the title text */
.image-title {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Precise centering */
  color: #ffffff; /* White text */
  font-size: clamp(1.2rem, 4vw, 1.6rem); /* Responsive font size */
  font-weight: bold;
  text-transform: uppercase; /* Optional: makes text uppercase */
  letter-spacing: 1px; /* Optional: adds spacing */
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease-in-out; /* Smooth fade transition */
  z-index: 2; /* Ensure text is above the tint */
  pointer-events: none; /* Prevent text from blocking the link click */
  text-align: center; /* Ensure text centers if it wraps */
  width: 90%; /* Prevent text overflow */
  font-family: 'Montserrat';
}

.image-link {
    top: calc(50% + 30px);
    transform: translate(-50%, 0);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hover effects */
.image-link-wrapper:hover::before,
.image-link-wrapper:active::before {
  opacity: 1; /* Show the tint on hover and active */
}

.image-link-wrapper:hover .image-title,
.image-link-wrapper:active .image-title {
  opacity: 1; /* Show the text on hover and active */
}

/* Optional: Slight zoom effect on the image itself on hover */
.image-link-wrapper img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.3s ease-in-out; /* Smooth zoom transition */
}

.image-link-wrapper:hover img,
.image-link-wrapper:active img {
  transform: scale(1.05); /* Slightly zoom image on hover/touch */
}

/* Contact Page Specific CSS */
body.contact-page {
    overflow-y: auto; /* Allow scrolling */
}
body.contact-page .full-page-section {
    position: relative; /* Override absolute */
    height: auto; /* Allow natural height */
    min-height: calc(100vh - 80px); /* Fill screen initially */
    transform: none;
    opacity: 1;
    visibility: visible;
}

/* Media Queries - Improved for better responsiveness */
/* Large Tablets */
@media (max-width: 992px) {
    .site-header {
        padding: 15px 30px;
    }
    
    .main-nav a {
        font-size: 0.85em;
        padding: 0 8px;
    }
    
    .design-section .image-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .scroll-indicator {
        bottom: 40px; /* Higher position for better visibility */
        width: 45px;
        height: 45px;
    }
    
    .scroll-indicator.up-arrow {
        bottom: 40px;
    }
}

/* Tablets / Small Screens */
@media (max-width: 768px) {
    /* Header stacking styles */
    .site-header { 
        padding: 10px 20px;
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    
    .site-logo { 
        margin: 10px 0;
        text-align: center;
    }
    
    .main-nav.left-nav { 
        margin-right: 0;
    }
    
    .main-nav ul { 
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 8px 0;
    }
    
    /* Content adjustments */
    .full-page-section {
        height: calc(100vh - 150px);
    }
    
    .scroll-indicator.up-arrow {
        bottom: 50px; /* Higher for better visibility on tablets */
    }
    
    .design-section .image-container { 
        flex-direction: column;
        gap: 20px;
    }
    
    .design-section .image-half { 
        width: 100%;
    }
    
    .hero p {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .scroll-indicator {
        bottom: 50px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .site-header {
        padding: 8px 15px;
    }
    
    .main-nav li {
        margin: 6px 0;
    }
    
    .main-nav a {
        font-size: 0.8em;
        padding: 6px 12px;
    }
    
    .site-logo img {
        height: 40px;
        width: auto;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.2rem); /* Smaller on mobile */
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: clamp(0.9rem, 4vw, 1.1rem); /* Smaller on mobile */
        max-width: 90%;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .design-section h2 {
        font-size: 28px;
    }
    
    .design-section .image-half {
        height: 220px;
    }
    
    .scroll-indicator {
        bottom: 70px; /* Position higher for better visibility on mobile */
        width: 70px; /* Slightly smaller but still large */
        height: 70px;
        font-size: 32px;
    }
    
    #showDesignArrow, #hideDesignArrow {
        font-size: 32px;
        display: block !important;
    }
    
    .full-page-section {
        padding: 15px;
        height: 100vh; /* Ensure full height */
    }
}

/* Extra Small Phones */
@media (max-width: 320px) {
    .main-nav ul {
        padding: 0 10px;
        gap: 5px;
    }
    
    .main-nav li {
        margin: 4px 0;
    }
    
    .design-section .image-container {
        padding: 10px;
    }
    
    .design-section .image-half {
        height: 200px;
    }
    
    .scroll-indicator {
        bottom: 90px; /* Even higher for very small screens */
        width: 60px; /* Slightly smaller for very small screens */
        height: 60px;
        font-size: 30px;
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 7vw, 1.8rem); /* Even smaller */
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: clamp(0.8rem, 4vw, 0.9rem); /* Even smaller */
        max-width: 95%;
        margin-bottom: 25px;
    }
}

/* Handle touch devices */
@media (hover: none) {
    /* Show image overlay and title on touch with opacity reduction */
    .image-link-wrapper::before {
        opacity: 0.3; /* Always show a bit of the overlay */
    }
    
    .image-title {
        opacity: 0.9; /* Always show title with high opacity */
        top: 50%; /* Ensure proper vertical centering on touch devices too */
    }
}

/* Special handling for portrait orientation on different height devices */
@media (max-height: 700px) and (orientation: portrait) {
    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .scroll-indicator {
        bottom: 40px;
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .design-section .image-container {
        padding: 15px;
    }
}

/* Landscape mode optimizations */
@media (orientation: landscape) and (max-height: 600px) {
    .site-header {
        padding: 5px 15px;
    }
    
    .site-logo img {
        height: 35px;
    }
    
    .full-page-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .design-section .image-container {
        padding: 10px;
    }
    
    .scroll-indicator.up-arrow {
        bottom: 20px;
    }
}

/* Extra handling for very small heights */
@media (max-height: 600px) {
    .hero h1 {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: 20px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
}

/* For very small height and width combination */
@media (max-height: 600px) and (max-width: 480px) {
    .scroll-indicator {
        bottom: 60px;
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .hero p {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .hero h1 {
        font-size: clamp(1.4rem, 6vw, 1.7rem);
        margin-bottom: 10px;
    }
}

footer {
    background-color: var(--primary-color);  /* Changed to black */
    color: var(--light-color);
    padding-top: var(--space-lg);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    gap: var(--space-md);
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--light-color);
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--light-color);
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 1.5rem;
}


.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: var(--space-md);
    border-top: 1px solid rgb(4, 4, 4);
}

.footer-bottom p {
    color: white;  /* Keeping this white for contrast on black footer */
    font-size: 0.9rem;
}
    /* whats app Responsive */
    

    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
      }
      
      .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #25D366;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: all 0.3s;
      }
      
      .whatsapp-btn:hover {
        transform: scale(1.3);
        background-color: #22c15e;
      }
      
      .whatsapp-icon {
        width: 35px;
        height: 35px;
        fill: white;
      }
      
      /* whats app Responsive */
    

      .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
      }
      
      .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #25D366;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: all 0.3s;
      }
      
      .whatsapp-btn:hover {
        transform: scale(1.3);
        background-color: #22c15e;
      }
      
      .whatsapp-icon {
        width: 35px;
        height: 35px;
        fill: white;
      }
      
      /* WhatsApp Chat Window */
      .whatsapp-chat {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 350px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.2);
        display: none;
        z-index: 1000;
        overflow: hidden;
      }
      
      .chat-header {
        background-color: #128C7E;
        color: white;
        padding: 15px;
        display: flex;
        align-items: center;
      }
      
    
      .close-chat {
        margin-left: auto;
        cursor: pointer;
        font-size: 20px;
      }
      
      .chat-body {
        padding: 15px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 50 50'%3E%3Cpath d='M25 2a23 23 0 1 0 0 46 23 23 0 0 0 0-46zm0 41a18 18 0 1 1 0-36 18 18 0 0 1 0 36z' fill='%23e5e5e5' fill-opacity='0.2'/%3E%3C/svg%3E");
      }
      
      .chat-message {
        background-color: white;
        color: black;
        border-radius: 10px;
        padding: 10px 15px;
        margin-bottom: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      }
      
      .chat-input {
        background-color: white;
        padding: 10px;
        display: flex;
        align-items: center;
        border-top: 1px solid #e0e0e0;
      }
      
      .chat-input input {
        flex: 1;
        border: none;
        padding: 8px 12px;
        border-radius: 20px;
        background-color: #f0f0f0;
      }
      
      .chat-input input:focus {
        outline: none;
      }
      
      .send-btn {
        background-color: transparent;
        border: none;
        color: #128C7E;
        margin-left: 10px;
        cursor: pointer;
      }
  
      .chat-footer {
        padding: 10px 15px;
        text-align: center;
        font-size: 12px;
        color: #666;
        background-color: white;
        border-top: 1px solid #e0e0e0;
      }
      .nav-container {
        display: flex;
        justify-content: center;
        width: 100%;
        
        margin: 0 auto;
        color: white;
    }

    .navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 15px;
        flex-wrap: wrap;
    }

    .navigation a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.697);
        font-size: 18px;
        padding: 8px 20px;
        position: relative;
        transition: all 0.3s ease;
        border-radius: 30px;
    }

    .navigation a:hover {
        color: rgba(255, 255, 255, 0.726);
    }

    .navigation a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: rgba(255, 255, 255, 0.766);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navigation a:hover::after {
        width: 60%;
    }

    .navigation a.active {
        color: white;
    }

    .navigation a.active:hover::after {
        width: 0;
    }

    @media (max-width: 600px) {
        .navigation {
            gap: 5px;
        }
        
        .navigation a {
            font-size: 6px;
            padding: 2px 5px;
        }
    }
    /* CONTACT SECTION */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    max-width: 210px;
    margin: 0 auto;
}

.contact-info {
    align-items: center;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--light-color);  /* Changed to black */
}

.info-item i {
    font-size: 2.0rem;
    color: var(--light-color);  /* Changed to black */
    margin-right: 1rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

/* Contact section styling improvements */
.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

.social-heading {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Social links styling improvements */
.social-links {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    margin: 0;
}

.social-link i {
    font-size: 1.3rem;
    color: #ffffff;
}

.social-link:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.social-link:hover i {
    color: #000000;
}

