/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background-color: #022140;
    color: white;
    padding: 5px 0;
    font-size: 12px;
    text-align: right;
    padding-right: 20px;
}

.logo-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: #1a5276;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    padding: 10px 5px;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1a5276;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/pantai-cipatujah.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #1a5276;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #154360;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-section {
  background-color: #f7fbfd;
}

.feature-box {
  background-color: #fff;
  box-shadow: 0 0.1rem 0.75rem rgba(0, 0, 0, 0.05);
}


/* Statistics Section */
.statistics {
    background-color: #1a5276;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.statistics h2 {
    margin-bottom: 20px;
}

/* Development Section */
.development, .potential {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.development h2, .potential h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a5276;
}

.development p, .potential p {
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.center-btn {
    text-align: center;
    margin-top: 20px;
}

/* Welcome Section */
.welcome {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

.welcome h2 {
    margin-bottom: 20px;
    color: #1a5276;
}

.welcome p {
    max-width: 800px;
    margin: 0 auto 20px;
}

.signature {
    font-style: italic;
    margin-top: 20px;
}

/* News Section */
.news {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a5276;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.news-item {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-img {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 15px;
}

.news-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1a5276;
    color: white;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    width: 23%;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-nav-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .feature-box {
        width: 100%;
    }
    
    .footer-section {
        width: 48%;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .footer-section {
        width: 100%;
    }
}
@media (min-width: 1400px) {
  .container {
	 width : 70%;
    max-width: 70% !important;
    
  }
}