/* ✅ General Body Settings */
body,html {
    background-color: #101826; /* ✅ Keep body separate from sections */
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

.riso-section {
    background-color: #101826;
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

/* ✅ RISO Main Title */
.riso h1 {
    font-size: 60px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 15px rgba(0, 150, 255, 0.6);
    margin-bottom: 50px;
    text-align: center;
}

/* ✅ Fullscreen Hero Section */
.hero {
    height: 600px;
    background: linear-gradient(135deg, #101826, #0D1424);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

/* ✅ Hero Content */
.hero-content {
    max-width: 800px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0px 4px 12px rgba(0, 150, 255, 0.7);
}

.hero p {
    font-size: 1.2rem;
    color: #a6b1c1;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ✅ CTA Button */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    margin-top: 15px;
}

.btn:hover {
    background: #3a7bd5;
    transform: scale(1.05);
}

/* ✅ Rotating Photo Showcase Section */
.fotoshow {
    width: 100%;
    height: 500px; /* ✅ Restrict height */
    background-color: #192231; /* ✅ Different color from Hero */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

/* ✅ Rotating Gallery */
.container {
    margin: auto;
    width: 200px;
    height: 250px;
    transform-style: preserve-3d;
    animation: gallery 15s linear infinite;
}

/* ✅ Image Display */
span {
    position: absolute;
    width: 200px;
    height: 350px;
    transform-origin: center;
    transform-style: preserve-3d;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

img:hover {
    transform: scale(1.05);
}

/* ✅ Section Styling */
.showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 100%;
    background-color: #192231;
    padding: 20px;
}

/* ✅ Image Container */
.showcase-image {
    flex: 1;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.showcase-image img {
    width: 90%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* ✅ Text Container */
.showcase-text {
    flex: 1;
    width: 50%;
    color: white;
    padding: 20px;
    text-align: left;
}

.showcase-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.showcase-text p {
    font-size: 18px;
    color: #a6b1c1;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ✅ Call-to-Action Button (Specific to Showcase) */
.showcase-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    margin-top: 15px;
}

.showcase-btn:hover {
    background: #3a7bd5;
    transform: scale(1.05);
}

/* SHOWCASE */
.showcase2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    width: 100%;
    background: linear-gradient(135deg, #101826, #0D1424);

}

/* ✅ Image Container */
.showcase2-image {
    flex: 1;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 30px;
}

.showcase2-image img {
    width: 90%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* ✅ Text Container */
.showcase2-text {
    flex: 1;
    width: 50%;
    color: white;
    padding: 20px;
    text-align: left;
    padding-left: 50px;
}

.showcase2-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.showcase2-text p {
    font-size: 18px;
    color: #a6b1c1;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ✅ Call-to-Action Button (Specific to Showcase) */
.showcase2-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    margin-top: 15px;
}

.showcase2-btn:hover {
    background: #3a7bd5;
    transform: scale(1.05);
}

/* ✅ Rotation Animation */
@keyframes gallery {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* ✅ Smooth Fade-in Effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------
   Media Queries: Below 768px
-------------------------------- */
@media (max-width: 768px) {
    /* Adjust the riso-section */
    .riso-section {
      height: 80px;
      padding-top: 10px;
    }
    .riso h1 {
      font-size: 40px;
      margin-bottom: 30px;
    }
    
    /* Hero Section adjustments */
    .hero {
      height: 600px;
      padding: 0 10px;
    }
    .hero-content {
      max-width: 100%;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
    
    /* Fotoshow / Gallery Section adjustments */
    .fotoshow {
      height: 300px;
      padding-bottom: 50px;
    }
    .container {
      width: 150px;
      height: 200px;
    }
    span {
      width: 150px;
      height: 250px;
    }
    
    /* Showcase Section adjustments */
    .showcase {
      flex-direction: column;
      height: auto;
      padding: 20px;
    }
    .showcase-image, .showcase-text {
      width: 100%;
      height: auto;
    }
    .showcase-image img {
      width: 90%;
      height: auto;
      max-height: 300px;
    }
    .showcase-text {
      text-align: center;
      padding: 20px 0;
    }
    .showcase-text h2 {
      font-size: 28px;
    }
    .showcase-text p {
      font-size: 16px;
    }
    .showcase-btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
    
    /* Showcase2 adjustments */
    .showcase2 {
      flex-direction: column;
      height: auto;
    }
    .showcase2-image, .showcase2-text {
      width: 100%;
      height: auto;
    }
    .showcase2-image img {
      width: 90%;
      height: auto;
      max-height: 300px;
    }
    .showcase2-text {
      text-align: center;
      padding: 20px 0;
    }
    .showcase2-text h2 {
      font-size: 28px;
    }
    .showcase2-text p {
      font-size: 16px;
    }
    .showcase2-btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }




